Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2020-12-19 12:25:40 +0300
committerAleksander Machniak <alec@alec.pl>2020-12-19 12:25:40 +0300
commitfa8ddf594fb74d22f9cb443ae4a615bdadadbe63 (patch)
treeb97bb9a516ead89b5b80051fab823d5bbe039a13 /.github
parent681d9349af2193a705b880fee4b2db954c0c45a3 (diff)
GA: Support "[skip ci]" and "[ci skip]" tags
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index dcf96aae2..f2f58a94a 100644
--- a/.github/workflows/tests.yml
+++ b/.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