8000 add mergify support by garlick · Pull Request #111 · chaos/diod · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

add mergify support #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump 8000 to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
cc: [gcc, clang]
os: [ubuntu-latest, ubuntu-18.04]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
Expand Down
26 changes: 26 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
queue_rules:
- name: default
queue_conditions:
- base=master
- label="merge-when-passing"
- label!="work-in-progress"
- -title~=^\[*[Ww][Ii][Pp]
- "approved-reviews-by=@chaos/diod-admins"
- "#approved-reviews-by>0"
- "#changes-requested-reviews-by=0"
merge_conditions:
- base=master
- label="merge-when-passing"
- label!="work-in-progress"
- "approved-reviews-by=@chaos/diod-admins"
- "#approved-reviews-by>0"
- "#changes-requested-reviews-by=0"
- -title~=^\[*[Ww][Ii][Pp]
update_method: rebase
merge_method: merge

pull_request_rules:
- name: rebase and merge when passing all checks
conditions: []
actions:
queue:
Loading
0