create-github-app-token
create-github-app-token copied to clipboard
GitHub Action for creating a GitHub App Installation Access Token
closes #3 - [ ] Fix update automation in https://github.com/octokit/app-permissions/ because it currently seems to be failing - [ ] Install https://github.com/apps/octokit-release-notifier and configure it to create repository dispatch events...
Thanks for creating this action, it tidied up lots of our workflows. This is more of a question, should I be able to use this action on workflows run by...
# Story *Given that* credentials can be leaked from GitHub actions accidentally or intentionally by a variety of means *As a* security-conscious GHA workflow owner *When* there is a Requirement...
I'd like to get the permission to manage GitHub Repository Variables. https://docs.github.com/ja/rest/authentication/permissions-required-for-github-apps?apiVersion=2022-11-28#repository-permissions-for-variables https://cli.github.com/manual/gh_variable But seems like the permission isn't supported. https://github.com/actions/create-github-app-token/blob/main/scripts/generated/app-permissions.json
Could we please support passing (only) `${{ github.repository }}` to the `repositories` input?
I'm trying to switch from `tibdex/github-app-token@v1` to `actions/create-github-app-token@v1` and a token created for a github app fails to check out a repository after the change. I created a workflow that...
Hello team, here the error of using v1 on self-hosted Windows runner: ``` repositories not set, creating token for all repositories for given owner "Tractor-Supply-Enterprise-Reliability" Failed to create token for...
Is there minimum permissions required for the GH App, apart from the permission to read the Contents of the target repo? I have this workflow setup: ```name: CI on: push:...
See https://github.com/actions/create-github-app-token/discussions/74#discussioncomment-10919777
```yaml [...snip...] preview: name: Preview needs: python-ci runs-on: ubuntu-latest permissions: write-all # just for testing # contents: read # pull-requests: write # id-token: write steps: - uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1...