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
|
name: Test Drupal site installation
|
||||||
|
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||||
|
@ -63,8 +61,6 @@ jobs:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
theme-path:
|
theme-path:
|
||||||
|
@ -96,8 +92,6 @@ jobs:
|
||||||
|
|
||||||
name: "Run ${{ matrix.test-types }} tests"
|
name: "Run ${{ matrix.test-types }} tests"
|
||||||
|
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
test-types:
|
test-types:
|
||||||
|
@ -144,8 +138,6 @@ jobs:
|
||||||
|
|
||||||
name: "Run coding standards checks"
|
name: "Run coding standards checks"
|
||||||
|
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675
|
||||||
|
|
Loading…
Reference in a new issue