mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-14 16:13:54 +00:00
17 lines
544 B
YAML
17 lines
544 B
YAML
pull_request_rules:
|
|
- name: Make sure PR are up to date before merging
|
|
description: This automatically updates PRs when they are out-of-date with the
|
|
base branch to avoid semantic conflicts (next step is using a merge
|
|
queue).
|
|
conditions: []
|
|
actions:
|
|
update:
|
|
- name: Close all on main
|
|
conditions:
|
|
- base=main
|
|
- -author~=^dependabot(|-preview)\[bot\]$
|
|
actions:
|
|
close:
|
|
message: Please do not open PR's on the `main` branch, but on the `develop`
|
|
branch only. Thank you!
|