From 7d59b4a13bad42c2574d230f18d70094e55e6d6f Mon Sep 17 00:00:00 2001 From: Fuxing Loh <4266087+fuxingloh@users.noreply.github.com> Date: Sat, 10 Jun 2023 13:00:04 +0800 Subject: [PATCH] chore(workflows): setup on: merge_group (#474) #### What this PR does / why we need it: As per title to take advantage of merge queue. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 35edc5a2..1611d059 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,10 +1,10 @@ name: CI on: - push: - branches: [main] pull_request: branches: [main] + merge_group: + branches: [main] concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}