Added Check Token subaction.
All checks were successful
Test Action / test (push) Successful in 4s

This commit is contained in:
2026-01-11 19:24:23 +01:00
parent 2bb60fc0ed
commit 32a4011b54
5 changed files with 126 additions and 2 deletions

14
check-token/action.yml Normal file
View File

@@ -0,0 +1,14 @@
name: 'check-token'
description: 'Verify the validity of a GitHub token'
author: 'Slawomir Koszewski with GitHub Copilot assistance'
inputs:
repository:
description: 'The GitHub repository to check (e.g., owner/repo)'
required: false
default: 'actions/checkout'
token:
description: 'The GitHub token to verify'
required: false
runs:
using: 'node24'
main: '../dist/check-token-action.js'