We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dependabot-auto-merge
github.token
secrets.GITHUB_TOKEN
1 parent 7993235 commit d6a0e0bCopy full SHA for d6a0e0b
1 file changed
.github/workflows/dependabot-auto-merge.yml
@@ -24,12 +24,12 @@ jobs:
24
id: dependabot-metadata
25
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
26
with:
27
- github-token: "${{ secrets.GITHUB_TOKEN }}"
+ github-token: "${{ github.token }}"
28
29
- if: |
30
(steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor')
31
|| (steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch')
32
run: gh pr merge --auto --squash "$PR_URL"
33
env:
34
- PR_URL: ${{github.event.pull_request.html_url}}
35
- GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
+ PR_URL: ${{ github.event.pull_request.html_url }}
+ GH_TOKEN: ${{ github.token }}
0 commit comments