From: Jérémie Astor Date: Thu, 9 Jan 2020 23:24:28 +0000 (+0100) Subject: :wrench: Skip github actions ? [skip ci] X-Git-Tag: nightly~1960 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=c838447ca49e0b6da6f460a04cc97c077ed3783f;p=gwion.git :wrench: Skip github actions ? [skip ci] --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9e04c45e..7352452f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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] diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5c334709..147c4276 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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] diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index e10b4fd8..b70ccf4b 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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]