Skip to content

Commit

Permalink
format ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
adriananeci committed Nov 9, 2020
1 parent 6ed2cad commit e2e1f60
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ jobs:
# Set the job key. The key is displayed as the job name
# when a job name is not provided
lint:
if: github.event_name == 'schedule' || (github.event_name == 'push' && !contains(github.event.head_commit.message, '***NO_CI***') &&
!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' &&
!contains(github.event.head_commit.message, '***NO_CI***') &&
!contains(github.event.head_commit.message, '[ci skip]') &&
!contains(github.event.head_commit.message, '[skip ci]') &&
!contains(github.event.head_commit.message, '[skip_ci]'))

# Name the Job
Expand Down

0 comments on commit e2e1f60

Please sign in to comment.