Skip to content

Commit 3f607cd

Browse files
linesightclaude
andcommitted
ci: trigger workflows on PRs targeting cefpython147
The pull_request filter only listed "master", so workflows would not run for pull requests opened against the cefpython147 branch. Add cefpython147 to the pull_request branch filter in all three CI workflows so the upstream maintainer can run CI on PRs into that branch once the workflow files are present on the base branch. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 217de92 commit 3f607cd

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: ["master", "cefpython147"]
66
pull_request:
7-
branches: ["master"]
7+
branches: ["master", "cefpython147"]
88
workflow_dispatch:
99
inputs:
1010
bypass_cache:

.github/workflows/ci-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: ["master", "cefpython147"]
66
pull_request:
7-
branches: ["master"]
7+
branches: ["master", "cefpython147"]
88
workflow_dispatch:
99
inputs:
1010
bypass_cache:

.github/workflows/ci-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ "master", "cefpython147" ]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: [ "master", "cefpython147" ]
88
workflow_dispatch:
99
inputs:
1010
bypass_cache:

0 commit comments

Comments
 (0)