Skip to content

Commit d48c574

Browse files
committed
fix: update condition for upstream sync workflow to use string containment
1 parent 60f5ae4 commit d48c574

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/auto-merge-upstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
# Only run for PRs with the upstream sync title and from upstream-main branch
1212
if: >
13-
github.event.pull_request.title == '🔄 Sync with upstream changes' &&
13+
contains(github.event.pull_request.title, 'Sync with upstream changes') &&
1414
github.event.pull_request.head.ref == 'upstream-main' &&
1515
github.event.pull_request.base.ref == 'main'
1616

0 commit comments

Comments
 (0)