We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 530c018 commit 42c8f3fCopy full SHA for 42c8f3f
.github/workflows/ci.yml
@@ -7,8 +7,9 @@ on:
7
branches: [ main ]
8
workflow_call:
9
secrets:
10
- GITHUB_TOKEN:
+ token:
11
required: true
12
+ description: "GitHub token for authentication"
13
workflow_dispatch:
14
15
jobs:
@@ -29,7 +30,7 @@ jobs:
29
30
contents: read
31
pull-requests: read
32
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33
+ GITHUB_TOKEN: ${{ secrets.token }}
34
35
test:
36
name: Run Tests
.github/workflows/release.yml
@@ -38,7 +38,7 @@ jobs:
38
39
checks: write
40
41
+ token: ${{ secrets.GITHUB_TOKEN }}
42
43
release:
44
name: Create Release
0 commit comments