We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d06ff commit 527e5c3Copy full SHA for 527e5c3
actions/setup-bot-token/action.yml
@@ -1,10 +1,10 @@
1
name: Setup app bot
2
description: Gets a github app token and configures git with the app's user
3
inputs:
4
- app_id:
+ app-id:
5
description: The app id
6
required: true
7
- app_private_key:
+ private-key:
8
description: The app private key
9
10
outputs:
@@ -17,8 +17,8 @@ runs:
17
- uses: actions/create-github-app-token@v1
18
id: app-token
19
with:
20
- app-id: ${{ inputs.app_id }}
21
- private-key: ${{ inputs.app_private_key }}
+ app-id: ${{ inputs.app-id }}
+ private-key: ${{ inputs.private-key }}
22
23
- name: Get GitHub App User ID
24
id: get-user-id
0 commit comments