]> Nishi Git Mirror - gwion.git/commitdiff
:wrench: Skip github actions ? [skip ci]
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 9 Jan 2020 23:24:28 +0000 (00:24 +0100)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Thu, 9 Jan 2020 23:24:36 +0000 (00:24 +0100)
.github/workflows/linux.yml
.github/workflows/macos.yml
.github/workflows/windows.yml

index 9e04c45eabb6f7f9424facf74d4f3d422b7d3f04..7352452fedd603a07955373eddb40412c46585b9 100644 (file)
@@ -7,6 +7,7 @@ jobs:
   build:
     name: ${{ matrix.double && 'double' || ''}}
     runs-on: ubuntu-latest
+    if: "!contains(github.event.head_commit.message, '[skip ci]')"
     strategy:
       matrix:
         cc: [gcc, clang]
index 5c334709369b01442a576283e0da374d180fba0b..147c4276651c7e1d5a1bf2322b20ffe0fa8ef995 100644 (file)
@@ -7,6 +7,7 @@ jobs:
   build:
     name: ${{ matrix.cc }} ${{ matrix.double && 'double' || ''}}
     runs-on: macos-latest
+    if: "!contains(github.event.head_commit.message, '[skip ci]')"
     strategy:
       matrix:
         cc: [gcc, clang]
index e10b4fd80c2a472f9886dafed80355c952e0e686..b70ccf4b66d2d576b747094901d078b144703055 100644 (file)
@@ -6,6 +6,7 @@ on: [push]
 jobs:
   build:
     runs-on: windows-latest
+    if: "!contains(github.event.head_commit.message, '[skip ci]')"
     strategy:
       matrix:
         double: [0, 1]