File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed
Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 11name : ' Generate GitHub App Token'
22description : ' Generates a GitHub App token'
3+ inputs :
4+ app-id :
5+ description : ' GitHub App ID'
6+ required : true
7+ private-key :
8+ description : ' GitHub App Private Key'
9+ required : true
10+
311outputs :
412 token :
513 description : ' Generated GitHub App Token'
1220 uses : actions/create-github-app-token@v1
1321 id : generate-zdc-token
1422 with :
15- app-id : ${{ vars.ZDC_AUTH_APP_ID }}
16- private-key : ${{ secrets.ZDC_AUTH_PRIVATE_KEY }}
23+ app-id : ${{ inputs.app-id }}
24+ private-key : ${{ inputs.private-key }}
1725 owner : ${{ github.repository_owner }}
Original file line number Diff line number Diff line change 1818 - name : Generate Token
1919 id : generate-token
2020 uses : zerodaycode/app-summoners-sync/.github/actions/generate-token@develop
21-
21+ with :
22+ app-id : ${{ vars.ZDC_AUTH_APP_ID }}
23+ private-key : ${{ secrets.ZDC_AUTH_PRIVATE_KEY }}
24+
2225 - name : Trigger Deployment Workflow
2326 uses : actions/github-script@v7
2427 with :
You can’t perform that action at this time.
0 commit comments