From cbebd15bcbbb11eb50b44aa9e05c2c483929075c Mon Sep 17 00:00:00 2001 From: madomado Date: Tue, 17 Dec 2024 23:50:12 +0800 Subject: [PATCH] fix(ci): decrease `anda update` verbosity (#2652) (cherry picked from commit a913b6609b097e594118b23b1dbe6e820724493b) --- .github/workflows/update-branch.yml | 2 +- .github/workflows/update-nightly.yml | 2 +- .github/workflows/update-weekly.yml | 2 +- .github/workflows/update.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-branch.yml b/.github/workflows/update-branch.yml index 13153d3439..4ab695519e 100644 --- a/.github/workflows/update-branch.yml +++ b/.github/workflows/update-branch.yml @@ -36,7 +36,7 @@ jobs: run: | nbranch="${{ matrix.branch }}" [ "$nbranch" = 'frawhide' ] && nbranch='f42' - anda update -vv --filters updbranch=1 --labels branch=${{ matrix.branch }},nbranch=$nbranch + anda update --filters updbranch=1 --labels branch=${{ matrix.branch }},nbranch=$nbranch env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: full diff --git a/.github/workflows/update-nightly.yml b/.github/workflows/update-nightly.yml index 104af60f41..0f341c129b 100644 --- a/.github/workflows/update-nightly.yml +++ b/.github/workflows/update-nightly.yml @@ -25,7 +25,7 @@ jobs: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Run Nightly Update - run: anda update -v --filters nightly=1 + run: anda update --filters nightly=1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: full diff --git a/.github/workflows/update-weekly.yml b/.github/workflows/update-weekly.yml index 46e41cb713..820368798e 100644 --- a/.github/workflows/update-weekly.yml +++ b/.github/workflows/update-weekly.yml @@ -25,7 +25,7 @@ jobs: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Run Weekly Update - run: anda update -v --filters weekly=1 + run: anda update --filters weekly=1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RUST_BACKTRACE: full diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d87a3fbc57..4888667c8e 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -25,7 +25,7 @@ jobs: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Run Update - run: anda update -v --excludes nightly=1 --excludes weekly=1 --excludes updbranch=1 + run: anda update --excludes nightly=1 --excludes weekly=1 --excludes updbranch=1 env: GITHUB_TOKEN: ${{ secrets.AUTOUPDATE_GH_TOKEN }} RUST_BACKTRACE: full