Skip to content

Commit

Permalink
improvement(mergify): add support for the new 'branch-2024.2' branch
Browse files Browse the repository at this point in the history
  • Loading branch information
vponomaryov authored and fruch committed Jun 25, 2024
1 parent b2cd1ca commit 6fbbee4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,25 @@ pull_request_rules:
- branch-2024.1
assignees:
- "{{ author }}"
- name: Automate backport pull request 2024.2
conditions:
- base=master # Ensure this rule only applies to PRs merged into the master branch
- label=backport/2024.2 # The PR must have this label to trigger the backport
actions:
backport:
title: "[Backport 2024.2] {{ title }}"
body: |
{{ body }}
{% for c in commits %}
(cherry picked from commit {{ c.sha }})
{% endfor %}
Parent PR: #{{number}}
branches:
- branch-2024.2
assignees:
- "{{ author }}"
- name: Automate backport pull request perf-v14
conditions:
- base=master # Ensure this rule only applies to PRs merged into the master branch
Expand Down

0 comments on commit 6fbbee4

Please sign in to comment.