Add support for GitHub App tokens instead of PAT's #1173
Replies: 1 comment
|
Worth adding the argument that makes this need to be upstream rather than something you can do locally, because it's stronger than it first looks. Nothing in the workflows cares what kind of token it gets. Both places it's used are just: token: ${{ secrets.GH_PAT || github.token }}GH_PAT: ${{ secrets.GH_PAT || github.token }}So an app installation token would work as-is — except you can't get one into The part I'd put in the request, though, is that hand-editing your own workflows doesn't survive. There's an One suggestion on shape: the existing Worth checking |
Uh oh!
There was an error while loading. Please reload this page.
Because of the configured PAT's, all issues etc. are created by the user that created the Personal Access Token.
I would like to use a GitHub Apps token, so that issues are created by a bot maintained by my organization.
This would require:
app_client_idconfig option, and adding docs stating that the user should create aapp_private_keysecret (or something similar).All reactions