Skip to content

Commit 40bdcc6

Browse files
Copilotavallete
andauthored
chore: add merge queue support to required GitHub Actions workflows (#5031)
* Add merge_group triggers to CI workflows Agent-Logs-Url: https://github.com/supabase/cli/sessions/956fab18-300f-4c6c-8e28-57242abff9e1 Co-authored-by: avallete <8771783+avallete@users.noreply.github.com> * chore: update codeowners for team cli --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: avallete <8771783+avallete@users.noreply.github.com> Co-authored-by: Andrew Valleteau <avallete@users.noreply.github.com> Co-authored-by: avallete <andrew.valleteau@supabase.io>
1 parent 5451231 commit 40bdcc6

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @supabase/dev-workflows
1+
* @supabase/cli

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: CI
22

33
on:
44
pull_request:
5+
merge_group:
56
push:
67
branches:
78
- develop
@@ -89,7 +90,7 @@ jobs:
8990

9091
link:
9192
name: Link
92-
if: ${{ !github.event.pull_request.head.repo.fork }}
93+
if: ${{ github.event_name == 'merge_group' || (github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork) }}
9394
runs-on: ubuntu-latest
9495
steps:
9596
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ name: "CodeQL"
1313

1414
on:
1515
pull_request:
16+
merge_group:
1617
push:
1718
branches:
1819
- develop

0 commit comments

Comments
 (0)