From c53581c6fe0cdc1b40095bf634379937875f8e1c Mon Sep 17 00:00:00 2001 From: Mika Vilpas Date: Wed, 3 Jul 2024 10:24:37 +0300 Subject: [PATCH] ci: add release-please token to fix stalled releases (#155) This adds the release-please token to the release workflow to fix an issue that occurred in https://github.com/mikavilpas/yazi.nvim/pull/154 Looks like release-please is able to create a release PR, but not able to start workflows using the default `GITHUB_TOKEN`. - https://github.com/googleapis/release-please-action/issues/818 - https://github.com/marketplace/actions/release-please-action - https://github.com/peter-evans/create-pull-request/issues/48 --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e2f394..e878819 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,3 +18,4 @@ jobs: # this is a built-in strategy in release-please, see "Action Inputs" # for more options release-type: simple + token: ${{ secrets.RELEASE_PLEASE_ACCESS_TOKEN }}