We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not really an issue, but I need to use a GH app to bypass branch protection rules. So my configuration is as follows:
On git checkout, you must not persist credentials, otherwise they cannot be overridden by github_token input var:
github_token
- name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 persist-credentials: 'false'
I used the actions/create-github-app-token action to generate token from GitHub App ID and PrivateKey.
actions/create-github-app-token
- uses: actions/create-github-app-token@v1 id: app-token
I can use that token on this action as:
- name: Commit Changes id: commit-changes uses: actions-js/push@v1.5 with: github_token: ${{ steps.app-token.outputs.token }}
The text was updated successfully, but these errors were encountered:
Apparently this causes the rebase command to fail, because it has no user name 😢
Sorry, something went wrong.
No branches or pull requests
Not really an issue, but I need to use a GH app to bypass branch protection rules. So my configuration is as follows:
On git checkout, you must not persist credentials, otherwise they cannot be overridden by
github_token
input var:I used the
actions/create-github-app-token
action to generate token from GitHub App ID and PrivateKey.I can use that token on this action as:
The text was updated successfully, but these errors were encountered: