create-github-app-token
create-github-app-token copied to clipboard
GitHub Action for creating a GitHub App Installation Access Token
Follow up to #71. We introduced a simple request retry logic via #79. There are a few ways we could improve the implementation - do not retry for all response...
Follow up to https://github.com/actions/create-github-app-token/discussions/39#discussioncomment-6880255. In preparation for #3 and #4 it might make sense to learn from similar actions. - [tibdex/github-app-token](https://github.com/tibdex/github-app-token) - [peter-murray/workflow-application-token-action](https://github.com/peter-murray/workflow-application-token-action) - [getsentry/action-github-app-token](https://github.com/getsentry/action-github-app-token) - [microsoftgraph/get-app-token](https://github.com/microsoftgraph/get-app-token) - [wow-actions/use-app-token](https://github.com/wow-actions/use-app-token) -...
follow up to: https://github.com/gr2m/github-app-token-action/pull/1/commits/2d5eced5968e6735fec0d8906d277ec8c8acc4b3 Our idea is to add separate `permission_*` parameters for each permission supported by GitHub Apps: https://docs.github.com/en/rest/overview/permissions-required-for-github-apps The `permission_*` keys can be generated based off https://github.com/octokit/app-permissions. Each...
This pull request fixes the file extension for two test files that were incorrectly named. This caused them not to be tested. A new test has been added to ensure...
Hi, I get this error when running the action: ``` Run actions/create-github-app-token@v1 with: app-id: *** private-key: *** github-api-url: https://api.github.com/ owner and repositories not set, creating token for the current repository...
Bumps the development-dependencies group with 2 updates: [esbuild](https://github.com/evanw/esbuild) and [yaml](https://github.com/eemeli/yaml). Updates `esbuild` from 0.22.0 to 0.23.0 Release notes Sourced from esbuild's releases. v0.23.0 This release deliberately contains backwards-incompatible changes. To...
Bumps the production-dependencies group with 2 updates: [@octokit/request](https://github.com/octokit/request.js) and [undici](https://github.com/nodejs/undici). Updates `@octokit/request` from 9.1.1 to 9.1.3 Release notes Sourced from @octokit/request's releases. v9.1.3 9.1.3 (2024-07-14) Bug Fixes improve toErrorMessage (#714)...
Undici has added native support for proxy handling, so it is no longer necessary for us to have our own custom proxy handling. Reverts #102 and resolves #134. Depends on...
I'm not sure if it would be worth making a dedicated request to `https://api.github.com/rate_limit` in this action to fetch this info, but I am assuming the API calls for token...
Would be nice if there was someway of logging the x-github-request-id header. It would be helpful to have this in cases where the attempt to get a token from app/installations//access_tokens...