Skip to content

Commit e32f0bb

Browse files
committed
Skip actions trigger when needed
1 parent a57d535 commit e32f0bb

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/code-style.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on: [push]
44

55
jobs:
66
php-cs-fixer:
7+
if: "!contains(github.event.head_commit.message, 'skip ci')"
8+
79
runs-on: ubuntu-latest
810

911
steps:

.github/workflows/coverage.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66

77
jobs:
88
tests:
9+
if: "!contains(github.event.head_commit.message, 'skip ci')"
10+
911
runs-on: ubuntu-latest
12+
1013
name: Unit test coverage
1114

1215
steps:

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
tests:
9+
if: "!contains(github.event.head_commit.message, 'skip ci')"
910
runs-on: ubuntu-latest
1011
continue-on-error: ${{ matrix.experimental }}
1112
strategy:

0 commit comments

Comments
 (0)