From 0974d9255fa7dc67346f8749142725d1bcb5f881 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Leszczy=C5=84ski?= Date: Wed, 18 Dec 2024 10:36:17 +0100 Subject: [PATCH] chore(env): update fast forward pipeline token (#136) fix variable Signed-off-by: Cyril Fougeray --- .github/workflows/fast-forward.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/fast-forward.yml b/.github/workflows/fast-forward.yml index b99aabbd..ed7d66db 100644 --- a/.github/workflows/fast-forward.yml +++ b/.github/workflows/fast-forward.yml @@ -15,6 +15,10 @@ jobs: issues: write steps: + - name: Configure git + run: | + git config --global --add url."https://wc-cicd:${{ secrets.GITHUB_TOKEN }}@github.com/worldcoin/".insteadOf "git@github.com:worldcoin/" + - name: Fast forwarding uses: sequoia-pgp/fast-forward@v1 with: @@ -25,4 +29,4 @@ jobs: # never post a comment. (In all cases the information is # still available in the step's summary.) comment: on-error - github_token: ${{ github.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }}