From b43826e7fe3747f9d612bf72a0e6b3598e5e7474 Mon Sep 17 00:00:00 2001 From: Steve Matney Date: Mon, 3 Oct 2022 11:35:28 -0600 Subject: [PATCH] Build: ensuring we use pipeline bot pat for checkout --- .github/workflows/npm-publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index f93d568..5858c1e 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -37,10 +37,12 @@ jobs: uses: actions/checkout@v2 with: persist-credentials: true + token: ${{ secrets.PIPELINE_BOT_PAT }} - run: npm ci - name: Semantic Release env: GITHUB_TOKEN: ${{ secrets.PIPELINE_BOT_PAT }} + GH_TOKEN: ${{ secrets.PIPELINE_BOT_PAT }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GIT_AUTHOR_NAME: im-pipeline-bot GIT_AUTHOR_EMAIL: ${{ secrets.COMMITBOT_EMAIL }}