If a Github App has access to the repository this Action is run in, then this Action retrieves a token so that App can perform tasks on the repository, such as making verified commits.
Required The Github App's identification number.
Required A PEM-encoded RSA private key generated by the Application
An access token to perform tasks on behalf of the App.
- uses: wranders/ghapp-token-action@v1
id: get-token
with:
app_id: ${{ secrets.APP_ID }}
app_key_pem: ${{ secrets.APP_PRIVATE KEY }}
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ steps.get-token.outputs.token }}