Skip to content

Commit 6b01812

Browse files
Fix tests workflow trigger to match branch names containing '/'
A single '*' in a GitHub Actions branch glob does not match '/', so pushes to branches like feat/modernization never triggered the tests workflow; use '**' instead. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent db8b3ef commit 6b01812

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: tests
22

33
on:
44
push:
5-
branches: [ "*" ]
5+
# Note: "**" is required to match branch names containing '/'
6+
branches: [ "**" ]
67
pull_request:
7-
branches: [ "*" ]
8+
branches: [ "**" ]
89

910
jobs:
1011
build:

0 commit comments

Comments
 (0)