create-github-app-token
create-github-app-token copied to clipboard
GitHub Action for creating a GitHub App Installation Access Token
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: 
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...
There's a workflow A: ```yml name: Root workflow on: [push] jobs: call-build: permissions: contents: write uses: org/workflows/.github/workflows/reusable-B.yml@master secrets: inherit ``` that calls a reusable workflow `reusable-B.yml`: ```yml jobs: version-tag-changelog: name:...
This pull request introduces support for generating GitHub App tokens for enterprise-level installations. It includes updates to the main logic, input validation, and new tests to ensure functionality and edge...
## Error when pushing workflows: "refusing to allow a GitHub App to create or update workflow without `workflows` permission" ### Issue Reference This issue relates to version [v2.1.4](https://github.com/actions/create-github-app-token/releases/tag/v2.1.4) ### Problem...