From 188d36320b0644bc436b701963d78be6386fe2c3 Mon Sep 17 00:00:00 2001 From: "Benjamin E. Coe" Date: Wed, 17 Jun 2020 08:28:39 -0700 Subject: [PATCH] fix(build): switch to GITHUB_TOKEN (#38) --- .github/workflows/release-please.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index e06a2be..0a9193c 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -7,8 +7,11 @@ jobs: release-please: runs-on: ubuntu-latest steps: + - run: git config user.name yoshi-automation + - run: git config user.email yoshi-automation@google.com + - run: git commit --author "yoshi-automation " - uses: GoogleCloudPlatform/release-please-action@v1.3.0 with: - token: ${{ secrets.RELEASE_CLA_SIGNED }} + token: ${{ secrets.GITHUB_TOKEN }} release-type: node package-name: release-please-action