We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 131084e commit d954cc8Copy full SHA for d954cc8
1 file changed
pr/checks-rerun/action.yml
@@ -6,8 +6,8 @@ inputs:
6
description: Workflow filename to rerun
7
required: false
8
default: pull-request.yml
9
- github-token:
10
- description: GitHub token with actions:write permission
+ token:
+ description: 'GitHub token or PAT with actions:write permission'
11
12
default: ${{ github.token }}
13
@@ -17,7 +17,7 @@ runs:
17
- name: Rerun failed jobs
18
uses: actions/github-script@v7
19
with:
20
- github-token: ${{ inputs.github-token }}
+ github-token: ${{ inputs.token }}
21
script: |
22
const owner = context.repo.owner;
23
const repo = context.repo.repo;
0 commit comments