Browse Source

GA: Support "[skip ci]" and "[ci skip]" tags

pull/7791/head
Aleksander Machniak 5 years ago
parent
commit
fa8ddf594f
  1. 3
      .github/workflows/tests.yml

3
.github/workflows/tests.yml

@ -7,12 +7,15 @@ on:
jobs:
linux_tests:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
strategy:
fail-fast: true
matrix:
php: [7.1, 7.2, 7.3, 7.4, 8.0]
name: PHP ${{matrix.php}}/Linux
steps:
- name: Checkout code
uses: actions/checkout@v2

Loading…
Cancel
Save