Remove checks for skipping CI
GitHub Actions now checks for `[skip ci]` by default.
This commit is contained in:
parent
a80de5c738
commit
e4550556cf
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -12,8 +12,6 @@ jobs:
|
|||
|
||||
name: Test Drupal site installation
|
||||
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
@ -63,8 +61,6 @@ jobs:
|
|||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
theme-path:
|
||||
|
@ -96,8 +92,6 @@ jobs:
|
|||
|
||||
name: "Run ${{ matrix.test-types }} tests"
|
||||
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
test-types:
|
||||
|
@ -144,8 +138,6 @@ jobs:
|
|||
|
||||
name: "Run coding standards checks"
|
||||
|
||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||
|
|
Loading…
Reference in a new issue