Skip to content

Commit

Permalink
ARROW-8322: [CI] Fix C# workflow file syntax
Browse files Browse the repository at this point in the history
The github actions expression requires the enclosing `${{ }}`

Closes #6815 from kszucs/csharp-yml

Authored-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
Signed-off-by: Krisztián Szűcs <szucs.krisztian@gmail.com>
  • Loading branch information
kszucs committed Apr 2, 2020
1 parent 3360989 commit ee8d3e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/csharp.yml
Expand Up @@ -61,7 +61,7 @@ jobs:
windows:
name: AMD64 Windows 2019 18.04 C# ${{ matrix.dotnet }}
runs-on: windows-latest
if: !contains(github.event.pull_request.title, 'WIP')
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
strategy:
fail-fast: false
matrix:
Expand All @@ -88,7 +88,7 @@ jobs:
macos:
name: AMD64 MacOS 10.15 C# ${{ matrix.dotnet }}
runs-on: macos-latest
if: !contains(github.event.pull_request.title, 'WIP')
if: ${{ !contains(github.event.pull_request.title, 'WIP') }}
strategy:
fail-fast: false
matrix:
Expand Down

0 comments on commit ee8d3e8

Please sign in to comment.