You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2020/04/02 18:03:26 UTC

[arrow] branch master updated: ARROW-8322: [CI] Fix C# workflow file syntax

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new ee8d3e8  ARROW-8322: [CI] Fix C# workflow file syntax
ee8d3e8 is described below

commit ee8d3e8d8de5a38d35d094646989319284611406
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Apr 2 20:03:05 2020 +0200

    ARROW-8322: [CI] Fix C# workflow file syntax
    
    The github actions expression requires the enclosing `${{ }}`
    
    Closes #6815 from kszucs/csharp-yml
    
    Authored-by: Krisztián Szűcs <sz...@gmail.com>
    Signed-off-by: Krisztián Szűcs <sz...@gmail.com>
---
 .github/workflows/csharp.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml
index dfa3277..4a64c09 100644
--- a/.github/workflows/csharp.yml
+++ b/.github/workflows/csharp.yml
@@ -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:
@@ -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: