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
I can't get Dependabot to accept rebase commands from the gh-actions bot:
gh-actions
Sorry, only users with push access can use that command.
If I follow up with a personal rebase comment manually, Dependabot accepts.
My workflow file:
name: Auto Rebase Dependabot PRs on: push: release: types: [published] jobs: auto-rebase: permissions: pull-requests: write contents: read name: Auto Rebase Dependabot PRs runs-on: ubuntu-latest if: ${{ github.actor == 'dependabot[bot]' }} && github.ref == 'refs/heads/main' || github.event == 'release' timeout-minutes: 5 steps: - name: Request Rebase uses: "bbeesley/gha-auto-dependabot-rebase@main" env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} with: task: rebase
The text was updated successfully, but these errors were encountered:
I believe when it says "push access" it means write permission, so you would need something like
permissions: pull-requests: write contents: write
Sorry, something went wrong.
No branches or pull requests
I can't get Dependabot to accept rebase commands from the
gh-actions
bot:If I follow up with a personal rebase comment manually, Dependabot accepts.
My workflow file:
The text was updated successfully, but these errors were encountered: