Skip to content

Commit 0592495

Browse files
authored
Merge pull request #256 from SolidOS/bourgeoa-npm-2
Fix token variable name in CI workflow
2 parents aae618b + 66dcf1d commit 0592495

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
github-token: "${{ secrets.GITHUB_TOKEN }}"
6060
- name: Enable auto-merge for Dependabot PRs
6161
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'
62-
run: gh pr merge --auto --merge "$PR_URL" # Use Github CLI to merge automatically the PR
62+
run: gh pr merge --auto --merge "$PR_URL" # Use GitHub CLI to merge automatically the PR
6363
env:
6464
PR_URL: ${{github.event.pull_request.html_url}}
65-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
65+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
6666

6767
npm-publish-dev:
6868
needs: build

0 commit comments

Comments
 (0)