Skip to content

Commit b048759

Browse files
authored
fix: Revert "chore: use GITHUB_TOKEN instead of PAT in release-please workflow (#1…" (#1416)
This reverts commit 75fb2a8.
1 parent 0c38622 commit b048759

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release-please.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ jobs:
1919
- uses: googleapis/release-please-action@v4
2020
id: release
2121
with:
22-
token: ${{ secrets.GITHUB_TOKEN }}
22+
# > By default, Release Please uses the built-in GITHUB_TOKEN secret.
23+
# > However, all resources created by release-please (release tag or release pull request) will not trigger future GitHub actions workflows,
24+
# > and workflows normally triggered by release.created events will also not run.
25+
# https://github.com/googleapis/release-please-action?tab=readme-ov-file#other-actions-on-release-please-prs
26+
token: ${{ secrets.GH_PAT }}
2327
release-type: node
2428

2529
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)