From 49e30b7b8bb44d97eafb3ce1eb8d91f972df05d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 1 Sep 2024 12:51:56 +0200 Subject: [PATCH 1/2] chore: update release-please config - Use new repository for the action - Use nodejs-github-bot's PAT --- .github/workflows/release-please.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 87d1b185..a200b755 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -11,10 +11,11 @@ jobs: outputs: release_created: ${{ steps.release.outputs.release_created }} steps: - - uses: google-github-actions/release-please-action@v4 + - uses: googleapis/release-please-action@v4 id: release with: release-type: node + token: ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }} npm-publish: needs: release-please if: ${{ needs.release-please.outputs.release_created }} From 7aa5220ac1f411ec53e0672260e4d20fdcd15be3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 1 Sep 2024 17:42:21 +0200 Subject: [PATCH 2/2] permissions --- .github/workflows/release-please.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index a200b755..5fa54aa8 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -5,6 +5,9 @@ on: branches: - main +permissions: + contents: read + jobs: release-please: runs-on: ubuntu-latest