Skip to content
Open
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
20 changes: 10 additions & 10 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ pull_request_rules:
- "#approved-reviews-by >= 1"
- or:
- and:
- label=ok-to-merge
- label=squash
- label=ok-to-merge
- label=squash
- label=ok-to-squash
- -label=wip
- -label=do-not-merge/hold
Expand Down Expand Up @@ -52,7 +52,7 @@ pull_request_rules:
❗❗❗
All commits in this PR must be signed off.
Please sign all commits by:

```shell
git rebase HEAD~{{ commits | length }} --signoff
git push --force-with-lease origin {{ head }}
Expand All @@ -63,22 +63,22 @@ merge_protections:
if:
- base = main
success_conditions:
- "title ~= ^(\\[wip\\]|\\[backport\\]|\\[cherry-pick\\])?(
)?(fix|feat|docs|style|refactor|perf|test|build|ci|chore|revert)(?:\\(.+\
\\))?:"
- "title ~= ^(\\[wip\\]|\\[backport\\]|\\[cherry-pick\\])?( )?(fix|feat|docs|style|refactor|perf|test|build|ci|chore|revert)(?:\\(.+\\))?:"
- name: Enforce verified commits
description: Make sure that we have verified commits
if:
- or:
- base=main
- base~=^release\/v
- base=main
- base~=^release\/v
success_conditions:
- "#commits-unverified = 0"
- name: Enforce linear history
description: Make sure that we have a linear history, no merge commits are allowed
if:
- or:
- base=main
- base~=^release\/v
- base=main
- base~=^release\/v
success_conditions:
- "linear-history"
merge_protections_settings:
reporting_method: check-runs
Loading