From 36538792415e2631fafadf82aa22087c3a2b10c0 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Thu, 2 Jan 2025 16:19:45 +0000 Subject: [PATCH] ci: update check for changes step in bot_update_exclusions --- .github/workflows/bot_update_exclusions.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bot_update_exclusions.yaml b/.github/workflows/bot_update_exclusions.yaml index 3389a42..9474b49 100644 --- a/.github/workflows/bot_update_exclusions.yaml +++ b/.github/workflows/bot_update_exclusions.yaml @@ -26,9 +26,9 @@ jobs: - name: 📦 Install Dependencies run: dart pub get - - name: 🔍 Check for changes + - name: 🔍 Check for exclusions changes id: make - run: if dart lib/exclusion_reason_table.dart --set-exit-if-changed; then echo "did_change=false"; else echo "did_change=true"; fi >> $GITHUB_ENV + run: (dart lib/exclusion_reason_table.dart --set-exit-if-changed && echo "did_change=false" >> $GITHUB_ENV) || echo "did_change=true" >> $GITHUB_ENV - name: 🔑 Config Git User if: ${{ env.did_change == 'true' }}