From d32eb966642d1108a42b5930e04bb9f867eb1328 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 22 Oct 2022 14:05:15 +0200 Subject: [PATCH] Switch to push-protected GH action for typedoc usage MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/generate-typedoc.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/generate-typedoc.yml b/.github/workflows/generate-typedoc.yml index f69969a1..4971bab8 100644 --- a/.github/workflows/generate-typedoc.yml +++ b/.github/workflows/generate-typedoc.yml @@ -10,10 +10,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - with: - persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token - fetch-depth: 0 # otherwise, you will failed to push refs to dest repo + # with: + # persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token + # fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - name: Set node version to 16 uses: actions/setup-node@v3 with: @@ -33,7 +33,10 @@ jobs: - name: Push changes if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'" - uses: ad-m/github-push-action@master + # uses: ad-m/github-push-action@master + uses: CasperWA/push-protected@v2 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + # github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GH_TOKEN_PROTECTED }} branch: ${{ github.event.repository.default_branch }} + unprotect_reviews: true -- 2.34.1