You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/08/07 17:56:45 UTC

[airflow] branch master updated: Fixed wrong name of workflow in cancel step (#10219)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c2fa100  Fixed wrong name of workflow in cancel step (#10219)
c2fa100 is described below

commit c2fa1004ace3a6c017a22d4df174ebeaa51a710c
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Fri Aug 7 19:56:08 2020 +0200

    Fixed wrong name of workflow in cancel step (#10219)
---
 .github/workflows/ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6e2c47b..a8eb0a1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -48,9 +48,10 @@ jobs:
     name: "Cancel previous workflow run"
     runs-on: ubuntu-latest
     steps:
-      - uses: potiuk/cancel-workflow-runs@v1
+      - name: Cancel other workflow runs
+        uses: potiuk/cancel-workflow-runs@v1
         with:
-          workflow: ci.yaml
+          workflow: ci.yml
           token: ${{ secrets.GITHUB_TOKEN }}
 
   static-checks: