Skip to content

Commit e53f80e

Browse files
authored
ci: update check for changes step in bot_update_exclusions (#133)
1 parent 7c9292c commit e53f80e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bot_update_exclusions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
- name: 📦 Install Dependencies
2727
run: dart pub get
2828

29-
- name: 🔍 Check for changes
29+
- name: 🔍 Check for exclusions changes
3030
id: make
31-
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
31+
run: (dart lib/exclusion_reason_table.dart --set-exit-if-changed && echo "did_change=false" >> $GITHUB_ENV) || echo "did_change=true" >> $GITHUB_ENV
3232

3333
- name: 🔑 Config Git User
3434
if: ${{ env.did_change == 'true' }}

0 commit comments

Comments
 (0)