Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 0b30d93

Browse files
committed
fix(ci): correct release PR detection for fastertools GitHub App
The release PRs are created by 'app/fastertools-gha', not 'release-please[bot]'. Added fallback detection based on PR title pattern as well.
1 parent 801f66f commit 0b30d93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci-release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
detect-release:
1010
name: Detect Release Package
1111
runs-on: ubuntu-latest
12-
# Only run for release-please PRs
13-
if: github.event.pull_request.user.login == 'release-please[bot]'
12+
# Only run for release-please PRs (from fastertools GitHub App)
13+
if: github.event.pull_request.user.login == 'app/fastertools-gha' || contains(github.event.pull_request.title, 'chore(main): release')
1414
outputs:
1515
is_release_pr: ${{ steps.detect.outputs.is_release_pr }}
1616
cli_release: ${{ steps.detect.outputs.cli_release }}

0 commit comments

Comments
 (0)