File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ jobs:
2323 id : metadata
2424 uses : dependabot/fetch-metadata@v2
2525 with :
26- github-token : $
26+ github-token : ${{ secrets.GITHUB_TOKEN }}
2727
2828 - name : Approve PR
2929 run : gh pr review --approve "$PR_URL"
3030 env :
31- PR_URL : $
32- GH_TOKEN : $
31+ PR_URL : ${{ github.event.pull_request.html_url }}
32+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3333
3434 - name : Enable auto-merge for patch and minor updates
3535 if : steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.dependency-type == 'direct:production'
3636 run : gh pr merge --auto --squash "$PR_URL"
3737 env :
38- PR_URL : $
39- GH_TOKEN : $
38+ PR_URL : ${{ github.event.pull_request.html_url }}
39+ GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1818 with :
1919 config-file : .github/release-please-config.json
2020 manifest-file : .github/release-please-manifest.json
21- release-type : elixir
2221 token : ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
You can’t perform that action at this time.
0 commit comments