12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- pull_request_rules:
- - name: automatic rebase for PR marked as “keep-up-to-date“
- conditions:
- - -draft # filter-out draft PRs
- - label="keep-up-to-date"
- - "label!=CI:fail" # exclude PRs with "CI::fail" label
- actions:
- update:
- - name: Rebase pull requests once when it's labeled with `rebase`
- conditions:
- - label=rebase
- actions:
- rebase: {}
- label:
- remove:
- - rebase
- - name: Automatic merge when CI passes
- conditions:
- - check-success=All Garnix checks
- actions:
- merge:
- method: merge
- delete_head_branch:
- - name: Warn on conflicts
- conditions:
- - conflict
- actions:
- comment:
- message: "@{{author}} this pull request is now in conflict 😩"
- label:
- toggle:
- - conflict
- - name: Toggle labels based on CI state
- conditions:
- - check-failure=All Garnix checks
- actions:
- label:
- toggle:
- - "CI:fail"
- - name: Add "WIP" label when the title contains "WIP"
- conditions:
- - title~=WIP
- actions:
- label:
- toggle:
- - WIP
|