Skip to content
Merged
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
8 changes: 7 additions & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,10 @@ pull_request_rules:
request_reviews:
teams:
- TEAM_NAME_HERE
priority_rules: []
priority_rules:
- name: "gbw Exploration "

Choose a reason for hiding this comment

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

medium

The rule name "gbw Exploration " contains a trailing space. This is likely unintentional and could cause issues or confusion. It's best practice to remove trailing whitespace from strings in configuration files for consistency and to prevent potential parsing problems.

  - name: "gbw Exploration"

priority: medium
conditions:
- and:
- base = main
Comment on lines +41 to +42
Copy link

Copilot AI Oct 18, 2025

Choose a reason for hiding this comment

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

The 'and' condition is unnecessary when there's only a single condition. Simplify to just '- base = main' at the same indentation level as 'conditions:'.

Suggested change
- and:
- base = main
- base = main

Copilot uses AI. Check for mistakes.
Comment on lines +41 to +42

Choose a reason for hiding this comment

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

medium

The and: operator is redundant in this context. In Mergify, a list of conditions is implicitly treated as an and operation. You can simplify this block for better readability by removing the explicit and:.

      - base = main

allow_checks_interruption: false
Loading