From efc0a7130db5d811570775b56dbc9346f1b62139 Mon Sep 17 00:00:00 2001 From: erezrokah Date: Wed, 7 Apr 2021 15:29:55 +0400 Subject: [PATCH 1/2] chore(release-please): use GitHub app token --- .github/workflows/release-please.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 4e952f68e6..363c401901 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -3,12 +3,18 @@ on: push: branches: - main + - chore/use_gh_app jobs: release-please: runs-on: ubuntu-latest steps: + - uses: navikt/github-app-token-generator@2d70c12368d1958155af4d283f9f21c9a2a8cb98 + id: get-token + with: + private-key: ${{ secrets.TOKENS_PRIVATE_KEY }} + app-id: ${{ secrets.TOKENS_APP_ID }} - uses: GoogleCloudPlatform/release-please-action@v2 with: - token: ${{ secrets.NODE_PKG_RELEASE_TOKEN }} + token: ${{ steps.get-token.outputs.token }} release-type: node package-name: '@netlify/plugin-nextjs' From 4f37e9a9ecc02818e2fbbc684682819051f5ca61 Mon Sep 17 00:00:00 2001 From: erezrokah Date: Wed, 7 Apr 2021 15:31:47 +0400 Subject: [PATCH 2/2] chore: remove test branch --- .github/workflows/release-please.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 363c401901..5efac1a16f 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -3,7 +3,6 @@ on: push: branches: - main - - chore/use_gh_app jobs: release-please: runs-on: ubuntu-latest