create-github-app-token icon indicating copy to clipboard operation
create-github-app-token copied to clipboard

GitHub Action for creating a GitHub App Installation Access Token

Results 37 create-github-app-token issues
Sort by recently updated
recently updated
newest added

Im using a self hosted runner on kubernetes and inject the private key into the runner from my secret manager via an environment variable. When echoing "$github_app_id" and "$github_app_private_key" from...

When using actions/create-github-app-token@v1 on a self-hosted runner on github enterprise, the action fails to get the installation id. Doing the manual steps with curl works, following the docs [here](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/generating-an-installation-access-token-for-a-github-app#generating-an-installation-access-token). Do...

``` Run actions/create-github-app-token@v1 with: github-api-url: https://gitenterprise.company.com/api/v3 app-id: 99 private-key: *** owner: ****** repositories not set, creating token for all repositories for given owner "ORG" Failed to create token for "ORG"...

Automated release notes aren't working as intended. Example: ![Image](https://github.com/user-attachments/assets/d1503aa1-545c-4509-8633-c36c60e5f2b9)

I can successfully generate a token. `Run actions/create-github-app-token@v1 repositories not set, creating a token for all repositories for given owner "myorg"`, but while executing a step that interacts with terraform,...

When passing in a list of repos to scope the app's access to, `github.repository` can't be used (supprisingly). Also building specific repos using `${{github.repository_owner}}/repo` doesn't work. This would be usefull...

Is it possible to authenticate using the installation access token generated with "actions/create-github-app-token@v1" when git push is performed from an external application? An installation access token should be required for...