Skip to content

Commit 05e85ff

Browse files
authored
Use GitHub App client ID instead of APP ID (#4)
actions/create-github-app-token#353
1 parent 7e25d47 commit 05e85ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ inputs:
1818
description: A comma or newline separated list of labels.
1919

2020
# secrets
21-
app-id:
22-
description: GitHub App ID that will use to create, update and close the pull request.
21+
client-id:
22+
description: GitHub App Client ID that will use to create, update and close the pull request.
2323
required: true
2424
private-key:
2525
description: GitHub App private key that will use to create, update and close the pull request.
@@ -32,7 +32,7 @@ runs:
3232
uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1
3333
id: app-token
3434
with:
35-
app-id: ${{ inputs.app-id }}
35+
client-id: ${{ inputs.client-id }}
3636
private-key: ${{ inputs.private-key }}
3737
permission-contents: write
3838
permission-pull-requests: write

0 commit comments

Comments
 (0)