File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,14 +17,15 @@ jobs:
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 : github.event_name == 'schedule' || \
21- (
22- github.event_name == 'push' && \
23- !contains(github.event.head_commit.message, '***NO_CI***') && \
24- !contains(github.event.head_commit.message, '[ci skip]') && \
25- !contains(github.event.head_commit.message, '[skip ci]') && \
26- !contains(github.event.head_commit.message, '[skip_ci]')
27- )
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+ )
2829
2930 # Name the Job
3031 name : Lint code base
You can’t perform that action at this time.
0 commit comments