Skip to content

Commit

Permalink
test: new configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
ruilopesm committed Aug 18, 2023
1 parent 9a720ca commit 18d3973
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions reviewpad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,25 @@ rules:

workflows:
- name: Assign author
always-run: true
run: $addAssignees([$getAuthor()], 1)
run:
- if: $rule("First run state")
then: $addAssignees([$getAuthor()])

- name: Request review from maintainers
run:
- if: $rule("Open PR state")
then: $addReviewers($getTeamMembers("atomic-23/24"), 1, "round-robin")
- if: $rule("First run state")
then: $addReviewers($getTeamMembers("atomic-23/24"))

- name: Base message and summary
run:
- $info("Thanks for your contribution!")
- $warn("Please make sure the CI is green before merging.")
- if: $rule("Open PR state")
- if: $rule("First run state")
then: $summarize()

- name: Enforce conventional commits
always-run: true
run: $titleLint()

- name: Enforce head branch deletion
run: $deleteHeadBranch()

0 comments on commit 18d3973

Please sign in to comment.