Skip to content

Commit

Permalink
#Docs - Skipping the action
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Mar 19, 2021
1 parent 49ecddd commit 4e047fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
name: Build ${{ matrix.os }} - Bash
runs-on: ${{ matrix.os }}
if: contains(github.event.head_commit.message, '#docs') == false
if: ${{ !contains(github.event.head_commit.message, '#docs') }}

strategy:
matrix:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
build_pwsh:
name: Build windows-latest - powershell
runs-on: windows-latest
if: contains(github.event.head_commit.message, '#docs') == false
if: ${{ !contains(github.event.head_commit.message, '#docs') }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
build_cmd:
name: Build windows-latest - cmd
runs-on: windows-latest
if: contains(github.event.head_commit.message, '#docs') == false
if: ${{ !contains(github.event.head_commit.message, '#docs') }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
name: Publish the results
runs-on: ubuntu-latest
timeout-minutes: 5
if: always() && contains(github.event.head_commit.message, '#docs') == false
if: always() && ${{ !contains(github.event.head_commit.message, '#docs') }}
needs: [e2e_testing]

steps:
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
needs: [publish_results]
if: github.event_name != 'schedule' && success() && contains(github.event.head_commit.message, '#docs') == false
if: github.event_name != 'schedule' && success() && ${{ !contains(github.event.head_commit.message, '#docs') }}

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down

0 comments on commit 4e047fe

Please sign in to comment.