From e57ea3142cc7575e53b1db733dd614b4089a4326 Mon Sep 17 00:00:00 2001 From: Stan Girard Date: Thu, 27 Jul 2023 11:02:47 +0200 Subject: [PATCH] fix(release-please): use personal token to be able to trigger release (#789) * ci(check-pr-title): made prettier * fix(release-please): use personal token to be able to trigger release --- .github/workflows/conventional-pr-title.yml | 3 ++- .github/workflows/release-please.yml | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/conventional-pr-title.yml b/.github/workflows/conventional-pr-title.yml index a6d6560e5065..fcf217ab41ab 100644 --- a/.github/workflows/conventional-pr-title.yml +++ b/.github/workflows/conventional-pr-title.yml @@ -1,4 +1,5 @@ -name: Check PR title +name: Check PR title conventional commit + on: pull_request: types: diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 5993b4663694..ef25a56850d9 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -11,12 +11,11 @@ name: release-please jobs: release-please: - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_PLEASE_TOKEN }} runs-on: ubuntu-latest steps: - uses: google-github-actions/release-please-action@v3 with: release-type: node package-name: release-please-action - bump-patch-for-minor-pre-major: true \ No newline at end of file + bump-patch-for-minor-pre-major: true + token: ${{ secrets.RELEASE_PLEASE_TOKEN }} \ No newline at end of file