Skip to content

Commit

Permalink
fix(ci): check for merge_group in check-all job (#22372)
Browse files Browse the repository at this point in the history
  • Loading branch information
pront authored Feb 6, 2025
1 parent 4858750 commit 84bc0e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ jobs:
- name: Check if all values are false
id: check
run: |
# Always run the suite when the PR is in the merge queue
if [[ "${{ github.event_name }}" == "merge_group" ]] ; then
exit 0
fi
# Check if all values are 'false'
json=$(cat int_tests_changes.json)
all_false=$(echo "$json" | jq -r 'to_entries | all(.value == false)')
Expand Down

0 comments on commit 84bc0e4

Please sign in to comment.