Skip to content

Commit 85d31ca

Browse files
committed
.github/workflows/xfstests: Limit github actions to set branches
Currently github actions will run for push & pull to any branch for changes in fs/xfstests.py*. Instead - limit it to master branch for pull requests. - limit it to xfstestci* branch for any push request. Signed-off-by: Ritesh Harjani (IBM) <[email protected]>
1 parent 4be3f86 commit 85d31ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/xfstests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name: xfstests
33
on:
44
push:
55
branches:
6-
- '**'
6+
- 'xfstestsci**'
77
paths:
88
- 'fs/xfstests.py'
99
- 'fs/xfstests.py.data/*/ci.yaml'
1010
- '.github/workflows/xfstests.yaml'
1111
pull_request:
1212
branches:
13-
- '**'
13+
- 'master'
1414
paths:
1515
- 'fs/xfstests.py'
1616
- 'fs/xfstests.py.data/*/ci.yaml'

0 commit comments

Comments
 (0)