You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by je...@apache.org on 2022/08/30 21:48:54 UTC

[airflow] branch main updated: Change CI output to pr-labels (#26050)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new d4db9aecc3 Change CI output to pr-labels (#26050)
d4db9aecc3 is described below

commit d4db9aecc3e534630c76e59c54d90329ed20a6ab
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Tue Aug 30 23:48:44 2022 +0200

    Change CI output to pr-labels (#26050)
    
    The output for pull requests was pullRequestLabels should be
    pr-labels (missing rename in #26018)
---
 .github/workflows/ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 70607c6aeb..90245217ef 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -167,7 +167,7 @@ jobs:
       docs-filter: ${{ steps.selective-checks.outputs.docs-filter }}
       skip-pre-commits: ${{ steps.selective-checks.outputs.skip-pre-commits }}
       source-head-repo: ${{ steps.source-run-info.outputs.source-head-repo }}
-      pull-request-labels: ${{ steps.source-run-info.outputs.pullRequestLabels }}
+      pull-request-labels: ${{ steps.source-run-info.outputs.pr-labels }}
       in-workflow-build: ${{ steps.source-run-info.outputs.in-workflow-build }}
       build-job-description: ${{ steps.source-run-info.outputs.build-job-description }}
       runs-on: ${{ steps.source-run-info.outputs.runs-on }}
@@ -229,13 +229,13 @@ jobs:
       - name: Selective checks
         id: selective-checks
         env:
-          PR_LABELS: "${{ steps.source-run-info.outputs.pullRequestLabels }}"
+          PR_LABELS: "${{ steps.source-run-info.outputs.pr-labels }}"
           COMMIT_REF: "${{ github.sha }}"
         run: breeze ci selective-check
       - name: env
         run: printenv
         env:
-          PR_LABELS: ${{ steps.source-run-info.outputs.pullRequestLabels }}
+          PR_LABELS: ${{ steps.source-run-info.outputs.pr-labels }}
           GITHUB_CONTEXT: ${{ toJson(github) }}
 
   build-ci-images: