File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 # Set the job key. The key is displayed as the job name
1818 # when a job name is not provided
1919 lint :
20- if : |
21- github.event_name == 'schedule' || \
22- (
23- github.event_name == 'push' && \
24- !contains(github.event.head_commit.message, '***NO_CI***') && \
25- !contains(github.event.head_commit.message, '[ci skip]') && \
26- !contains(github.event.head_commit.message, '[skip ci]') && \
27- !contains(github.event.head_commit.message, '[skip_ci]')
28- )
20+ if : github.event_name == 'schedule' || (github.event_name == 'push' && !contains(github.event.head_commit.message, '***NO_CI***') && \
21+ !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && \
22+ !contains(github.event.head_commit.message, '[skip_ci]'))
2923
3024 # Name the Job
3125 name : Lint code base
You can’t perform that action at this time.
0 commit comments