Once your GitHub App is installed on an account, you can make it authenticate as an app installation for API requests. This allows the app to access resources owned by that installation, as long as the app was granted the necessary repository access and permissions. API requests made by an app installation are attributed to the app.
📌 This action will help in creating GitHub app installation token for both user accounts and Github organizations
Important
An installation access token expires after 1 hour. Please find suitable alternative approaches if you have long-running processes..
Parameter name | Description | Required |
---|---|---|
github_app_private_key | Github App Private key | ✔️ |
github_app_id | Your GitHub App ID | ✔️ |
owner | Github account owner name. if not specified takes owner of current repository where action is ran | ❌ |
repositories | List of github repositores to generte token for. if not specified takes current repository where action is ran. | ❌ |
-
Store your
Github App Id
andGithub App Private key
as github secret and pass the secret names as inputs for action. -
❌ 👉 Means optional values
Note
If the owner is set but repositories are empty, access will include all repositories for that owner. If both the owner and repositories are empty, access will be limited to the current repository.
Please refer to the release page for the latest release notes.
- uses: githubofkrishnadhas/github-access-using-githubapp@v2
id: token-generation
with:
# Your GitHub App ID - interger value
github_app_id: 1234567
# GitHub App Private key
github_app_private_key : ''
# GitHub account Owner name - Optional
owner: ''
# GitHub repositories names seperated by comma if more than 1 - optional
repositories: ''
- The token generated will be available as a ${{ steps.token-generation.outputs.token }} which can be used in later stages as required
uses: githubofkrishnadhas/github-access-using-githubapp@v2
id: token-generation
with:
github_app_id: ${{ secrets.APP_ID }}
github_app_private_key : ${{ secrets.PRIVATE_KEY }}
- To create a Token in the scope of current repository where action is run, you do not need to specify
owner
orrepositores
- Assuming both GitHub App ID and Private key are present as github secrets with names
APP_ID
andPRIVATE_KEY
- You can substitute your secrets names with above
- The token generated will be available as a ${{ steps.token-generation.outputs.token }} which can be used in later stages as required
uses: githubofkrishnadhas/github-access-using-githubapp@v2
id: token-generation
with:
github_app_id: ${{ secrets.APP_ID }}
github_app_private_key : ${{ secrets.PRIVATE_KEY }}
owner: 'github'
- To create a Token in the scope of current user or organization where your Github app has access, you need only to specify
owner
- Assuming both GitHub App ID and Private key are present as github secrets with names
APP_ID
andPRIVATE_KEY
- You can substitute your secrets names with above
- The token generated will be available as a ${{ steps.token-generation.outputs.token }} which can be used in later stages as required
uses: githubofkrishnadhas/github-access-using-githubapp@v2
id: token-generation
with:
github_app_id: ${{ secrets.APP_ID }}
github_app_private_key : ${{ secrets.PRIVATE_KEY }}
owner: 'github'
repositories: 'test1,test2,test3'
- To create a Token in the scope of provided repositories and owner where your Github app has access you need only to specify
owner
andrepositories
- The above will generate token which are scoped to repositores named
test1, test2, test3
ongithub
org - Assuming both GitHub App ID and Private key are present as github secrets with names
APP_ID
andPRIVATE_KEY
- You can substitute your secrets names with above
- The token generated will be available as a ${{ steps.token-generation.outputs.token }} which can be used in later stages as required
name: Clone Repository
on:
workflow_dispatch:
jobs:
clone:
runs-on: ubuntu-latest
steps:
- name: Token generator
uses: githubofkrishnadhas/github-access-using-githubapp@v2
id: token-generation
with:
github_app_id: ${{ secrets.APP_ID }}
github_app_private_key : ${{ secrets.PRIVATE_KEY }}
- name: Checkout Repository
uses: actions/checkout@v4
with:
repository: 'devwithkrishna/azure-terraform-modules'
token: ${{ steps.token-generation.outputs.token }}
fetch-depth: 1
- The above workflow generates a github app installation access token using the action -
githubofkrishnadhas/github-access-using-githubapp@v2
- The token generated will be available as a ${{ steps.token-generation.outputs.token }} which can be used in later stages as shown above
- The workflow is to clone a repository named
azure-terraform-modules
insidedevwithkrishna
organization
- generating-an-installation-access-token
- get-a-user-installation-for-the-authenticated-app
- get-a-repository-installation-for-the-authenticated-app
All the above API's uses JWT as access token.