forked from Flank/flank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mergify.yml
29 lines (29 loc) · 1.44 KB
/
.mergify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pull_request_rules:
- name: automatic merge when GitHub branch protection passes on master
conditions:
- base=master
actions:
merge:
strict: true
strict_method: rebase
method: squash
commit_message: title+body
- name: ask to fix PR title
conditions:
- status-failure=check_title
- -closed
actions:
comment:
message: |
Title does not follow the guidelines of [Conventional Commits](https://www.conventionalcommits.org).
Please adjust title before merge and use one of following prefix:
- `build` - Changes that affect the build system or external dependencies (dependencies update)
- `ci` - Changes to our CI configuration files and scripts (basically directory `.github/workflows`)
- `docs` - Documentation only changes
- `feat` - A new feature
- `fix` - A bug fix
- `chore` - Changes which does not touch the code (ex. manual update of release notes). It will not generate release notes changes
- `refactor` - A code change that contains refactor
- `style` - Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)
- `test` - Adding missing tests or correcting existing tests and also changes for our test app
- `perf` - A code change that improves performance (I do not think we will use it)