This JavaScript GitHub Action can be used to impersonate a GitHub App when secrets.GITHUB_TOKEN
's limitations are too restrictive and a personal access token is not suitable.
secrets.GITHUB_TOKEN
has limitations such as not being able to triggering a new workflow from another workflow.
A workaround is to use a personal access token from a personal user/bot account.
However, for organizations, GitHub Apps are a more appropriate automation solution.
jobs:
job:
runs-on: ubuntu-latest
steps:
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.APP_ID }}
# Optional (defaults to ID of the repository's installation).
# installation_id: 1337
# Optional (defaults to all the Github App permissions).
# Using a YAML multiline string to avoid escaping the JSON quotes.
# permissions: >-
# {"members": "read"}
private_key: ${{ secrets.PRIVATE_KEY }}
# Optional (defaults to the current repository).
# repository: "owner/repo"
- name: Use token
env:
TOKEN: ${{ steps.generate_token.outputs.token }}
run: |
echo "The generated token is masked: ${TOKEN}"