From 0a449cba39f4e967c08043020be845027255d117 Mon Sep 17 00:00:00 2001 From: Martin Svoboda Date: Mon, 24 Jun 2024 16:59:32 +0200 Subject: [PATCH] Add password to gihub action --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2304801..219537d4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,9 @@ jobs: yarn test - name: Git config - run: git config --global user.email "bot@google.com" && git config --global user.name "bot" + run: | + git config --global user.email "bot@google.com" && git config --global user.name "bot" + password=${{ secrets.GITHUB_TOKEN }} - name: Apply version major if: contains(github.event.pull_request.labels.*.name, 'major')