We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ed2cad commit e2e1f60Copy full SHA for e2e1f60
1 file changed
.github/workflows/ci.yml
@@ -17,8 +17,11 @@ jobs:
17
# Set the job key. The key is displayed as the job name
18
# when a job name is not provided
19
lint:
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]') &&
+ if: github.event_name == 'schedule' ||
+ (github.event_name == 'push' &&
22
+ !contains(github.event.head_commit.message, '***NO_CI***') &&
23
+ !contains(github.event.head_commit.message, '[ci skip]') &&
24
+ !contains(github.event.head_commit.message, '[skip ci]') &&
25
!contains(github.event.head_commit.message, '[skip_ci]'))
26
27
# Name the Job
0 commit comments