diff --git a/.github/workflows/autoMerge.yml b/.github/workflows/autoMerge.yml index eeffccf5..f542ab25 100644 --- a/.github/workflows/autoMerge.yml +++ b/.github/workflows/autoMerge.yml @@ -18,6 +18,6 @@ jobs: - uses: actions/checkout@v2 - name: Enable Auto Merge env: - GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }} + PUSHTOKEN: ${{ secrets.PUSH_TOKEN }} run: | - echo test >> auth.txt && gh auth login --with-token < auth.txt && rm auth.txt && gh pr merge https://github.com/FreeTubeApp/FreeTube/pull/${{ github.event.pull_request.number }} --auto + echo $PUSHTOKEN >> auth.txt && gh auth login --with-token < auth.txt && rm auth.txt && gh pr merge https://github.com/FreeTubeApp/FreeTube/pull/${{ github.event.pull_request.number }} --auto