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

GitHub now [recommends](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/generating-a-json-web-token-jwt-for-a-github-app) using the clientId instead of the appId/privateKey Augment the options to allow clientId/clientSecret, validating that either this pair or appId/privateKey are provided, and pass these options along...

feature

Looks like Undici [added native proxy support](https://github.com/nodejs/undici/issues/1650), so we may be able to remove the custom proxy support we added in https://github.com/actions/create-github-app-token/pull/102. https://github.com/actions/create-github-app-token/blob/3cef845e011fe15a870d7e7227cd75b8bd8a1140/lib/request.js#L15-L16 _Originally posted by @parkerbxyz in https://github.com/actions/create-github-app-token/issues/132#issuecomment-2088761957_

feature

Hi All, I am setting up a github bot for use with github actions, but it cannot access the repos API endpoint. Here are the permissions that the bot is...

Sorry if this is already covered. How long is a token created by create-github-app-token expected to last? It appears that it only lasts 1 hour so our longer Conan builds...

I have the following step in my workflow ```yaml - name: Generate a token id: generate-token uses: actions/create-github-app-token@v1 with: github-api-url: "https://custom.gitenterprise.com/api/v3" app-id: ${{ vars.APP_ID }} private-key: ${{ secrets.APP_PRIVATE_KEY }} owner:...

feature

After struggling twice through creating a GitHub App, I filed https://github.com/actions/create-github-app-token/issues/89 and was encouraged to submit a pull request. This patch attempts to improve the documentation by: 1. Documenting the...

This action could handle a little more flexibility in the `repositories` input. A common mistake is to provide `repositories: foo, bar` instead of `repositories: foo,bar` if a token is needed...

pull request welcome

My company is going to be installing this action once per organization in order to get submodules to work. I would really like to be able to point them to...

documentation
pull request welcome

In my workflow, I use [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) for OIDC authentication via GitHub. This is a sample workflow: ``` name: Build on: push: branches: [main] jobs: build: runs-on: ubuntu-latest steps: - name:...