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

potiuk 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 61ef8ca239 Add VERBOSE equal to false for all just changed selective 
checks (#28519)
61ef8ca239 is described below

commit 61ef8ca239771a4d1644a308e898fdfdaa3daf8a
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Dec 21 11:17:45 2022 +0100

    Add VERBOSE equal to false for all just changed selective checks (#28519)
    
    Follow-up change after #28518
---
 .github/workflows/build-images.yml            | 1 +
 .github/workflows/codeql-analysis.yml         | 1 +
 .github/workflows/release_dockerhub_image.yml | 2 ++
 3 files changed, 4 insertions(+)

diff --git a/.github/workflows/build-images.yml 
b/.github/workflows/build-images.yml
index e5f71f15dd..b6934b6555 100644
--- a/.github/workflows/build-images.yml
+++ b/.github/workflows/build-images.yml
@@ -151,6 +151,7 @@ jobs:
         env:
           PR_LABELS: "${{ 
steps.get-latest-pr-labels.outputs.pull-request-labels }}"
           COMMIT_REF: "${{ env.TARGET_COMMIT_SHA }}"
+          VERBOSE: "false"
         run: breeze ci selective-check >> ${GITHUB_OUTPUT}
       - name: env
         run: printenv
diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index bb19030231..858b8a5d6b 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -49,6 +49,7 @@ jobs:
         id: selective-checks
         env:
           COMMIT_REF: "${{ github.sha }}"
+          VERBOSE: "false"
         run: breeze ci selective-check >> ${GITHUB_OUTPUT}
 
   analyze:
diff --git a/.github/workflows/release_dockerhub_image.yml 
b/.github/workflows/release_dockerhub_image.yml
index 2463943d18..65527e2c9b 100644
--- a/.github/workflows/release_dockerhub_image.yml
+++ b/.github/workflows/release_dockerhub_image.yml
@@ -57,6 +57,8 @@ jobs:
         uses: ./.github/actions/breeze
       - name: Selective checks
         id: selective-checks
+        env:
+          VERBOSE: "false"
         run: breeze ci selective-check >> ${GITHUB_OUTPUT}
   release-images:
     timeout-minutes: 120

Reply via email to