File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Deps & CI
2
2
3
- on : [push]
3
+ on :
4
+ push :
5
+ branches : [ '*' ]
6
+ pull_request :
7
+ branches : [ master, 'maint/*' ]
8
+ schedule :
9
+ - cron : ' 0 0 * * 1'
10
+ # Allow job to be triggered manually from GitHub interface
11
+ workflow_dispatch :
12
+
13
+ concurrency :
14
+ group : ${{ github.workflow }}-${{ github.ref }}
15
+ cancel-in-progress : true
16
+
17
+ permissions :
18
+ contents : read
4
19
5
20
jobs :
6
21
build-linux :
7
- if : " !contains(github.event.head_commit.message, '[skip ci]' && (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'nipy/nitransforms') )"
22
+ if : " !contains(github.event.head_commit.message, '[skip ci]')"
8
23
runs-on : ubuntu-latest
9
24
env :
10
25
TEST_DATA_HOME : /home/runner/testdata/nitransforms-tests
You can’t perform that action at this time.
0 commit comments