-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: menambahkan file .mergify.yml (#34)
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,48 @@ | ||
pull_request_rules: | ||
- name: ci testing jika sukses ke squash dengan label | ||
conditions: | ||
- check-success=build | ||
- base=main | ||
- label=ready-to-merge | ||
actions: | ||
comment: | ||
message: Terima kasih atas kontribusinya @{{author}}! | ||
label: | ||
add: | ||
- sudah direview! | ||
merge: | ||
method: squash | ||
|
||
- name: dart label | ||
conditions: | ||
- files~=\.dart$ | ||
actions: | ||
label: | ||
add: | ||
- dart files | ||
- request dart-team untuk review | ||
|
||
- name: markdown label | ||
conditions: | ||
- files~=\.md$ | ||
actions: | ||
label: | ||
add: | ||
- markdown files | ||
- request docs-team untuk review | ||
|
||
- name: review docs-team untuk file markdown | ||
conditions: | ||
- label=markdown files | ||
actions: | ||
request_reviews: | ||
teams: | ||
- "@nomadkode" | ||
|
||
- name: review dart-team untuk file markdown | ||
conditions: | ||
- label=dart files | ||
actions: | ||
request_reviews: | ||
teams: | ||
- "@bellshade/dart-team" |