Skip to content

Commit

Permalink
Remove skip ci if conndition from workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rusty-snake committed Feb 9, 2021
1 parent 8e8346f commit 091802e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-extra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ on:

jobs:
build-clang:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand All @@ -31,7 +30,6 @@ jobs:
- name: make
run: make
scan-build:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand All @@ -42,7 +40,6 @@ jobs:
- name: scan-build
run: NO_EXTRA_CFLAGS="yes" scan-build-10 --status-bugs make
cppcheck:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ on:

jobs:
build_and_test:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/sort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:

jobs:
profile-sort:
if: ${{ ! contains(github.event.commits[0].message, '[skip ci]') }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 091802e

Please sign in to comment.