Skip to content

Commit

Permalink
Fix trigger for merge queue build group (#2216)
Browse files Browse the repository at this point in the history
#2178 used the wrong trigger for merge queue builds.
  • Loading branch information
williamjallen authored May 22, 2024
1 parent 6f777b1 commit 7e605db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
if [ "${{github.event_name}}" == "pull_request" ]; then
BUILD_GROUP="Pull Requests";
elif [ "${{github.event_name}}" == "workflow_dispatch" ]; then
elif [ "${{github.event_name}}" == "merge_group" ]; then
BUILD_GROUP="Merge Queue";
elif [[ "${GITHUB_REF}" =~ "/master" ]] ; then
BUILD_GROUP="Master";
Expand Down

0 comments on commit 7e605db

Please sign in to comment.