Skip to content

feat: added merge groups #3896

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Default Pipeline

on:
pull_request:
merge_group:
Copy link
Preview

Copilot AI Mar 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The merge_group event trigger is added without branch filtering, unlike in the other workflows. Consider adding a branch specification (e.g., branches: ["main"]) to ensure consistency.

Suggested change
merge_group:
merge_group:
branches:
- "main"

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

push:
branches:
- "main"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull-request-opened.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: On-Pull-Request opened
on:
pull_request:
types: [opened]
merge_group:
branches: ["main"]

permissions:
pull-requests: write
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ name: On-PR to main
on:
pull_request:
branches: ["main"]
merge_group:
branches: ["main"]

permissions:
pull-requests: write
Expand Down
Loading