From 50eb11dd26df974802ab644000c3256eb873b4a2 Mon Sep 17 00:00:00 2001 From: Bugs5382 Date: Thu, 31 Oct 2024 15:15:38 -0400 Subject: [PATCH] ci: fix dependabot-action.yml --- .github/workflows/dependabot-action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dependabot-action.yml b/.github/workflows/dependabot-action.yml index 1a955d9..33fe34b 100644 --- a/.github/workflows/dependabot-action.yml +++ b/.github/workflows/dependabot-action.yml @@ -32,7 +32,7 @@ jobs: fi env: PR_URL: ${{ github.event.pull_request.html_url }} - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Run unit tests run: | npm test @@ -43,10 +43,10 @@ jobs: echo "::set-output name=pr_url::$PR_URL" env: PR_BASE_BRANCH: main - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Merge aggregated PRs if: steps.aggregate_prs.outputs.pr_url != '' run: | gh pr merge --auto --merge ${{ steps.aggregate_prs.outputs.pr_url }} env: - GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}