ci: Bug fix? Use ${{github.token}} instead of ${{secrets.GITHUB_TOKEN}}
This commit is contained in:
parent
37bafb14b1
commit
54dd12085b
1 changed files with 3 additions and 2 deletions
5
.github/workflows/auto_merge_prs.yml
vendored
5
.github/workflows/auto_merge_prs.yml
vendored
|
@ -15,9 +15,10 @@ jobs:
|
|||
if: ${{ github.actor == 'dependabot[bot]' }}
|
||||
uses: dependabot/fetch-metadata@v2.1.0
|
||||
with:
|
||||
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
github-token: "${{ github.token }}"
|
||||
- name: Enable auto-merge
|
||||
run: gh pr merge --auto --merge "$PR_URL"
|
||||
env:
|
||||
PR_URL: ${{github.event.pull_request.html_url}}
|
||||
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
OWNER: ${{ github.repository_owner }}
|
||||
GH_TOKEN: "${{ github.token }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue