From c4ba3216160a70dc4b0a6f06053a56076921c808 Mon Sep 17 00:00:00 2001 From: Marcelo Sousa <601882+marcelosousa@users.noreply.github.com> Date: Wed, 17 May 2023 14:32:33 +0100 Subject: [PATCH 1/2] feat: create PULL_REQUEST_TEMPLATE --- .github/PULL_REQUEST_TEMPLATE | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE new file mode 100644 index 000000000..bff0be9e4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE @@ -0,0 +1,3 @@ +## Description + +reviewpad:summary From 5a73384c37ba8b5069e07269c876e8aa2c74835c Mon Sep 17 00:00:00 2001 From: Marcelo Sousa <601882+marcelosousa@users.noreply.github.com> Date: Wed, 17 May 2023 14:33:46 +0100 Subject: [PATCH 2/2] fix: update reviewpad.yml --- reviewpad.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/reviewpad.yml b/reviewpad.yml index 618755f75..0dc3d1f5c 100644 --- a/reviewpad.yml +++ b/reviewpad.yml @@ -19,28 +19,7 @@ labels: # Define the list of workflows to be run by Reviewpad. # A workflow is a list of actions that will be executed based on the defined rules. # For more details see https://docs.reviewpad.com/guides/syntax#workflow. -# workflows: -# # This workflow calls Reviewpad AI agent to summarize the pull request. -# - name: summarize -# description: Summarize the pull request -# always-run: true -# if: -# # Summarize the pull requests when pull requests are opened or synchronized. -# - rule: ($eventType() == "synchronize" || $eventType() == "opened") && $state() == "open" -# extra-actions: -# - $summarize() - - # This workflow assigns the most relevant reviewer to pull requests. - # This helps guarantee that pull requests are reviewed by at least one person. -# - name: reviewer-assignment -# description: Assign the most relevant reviewer to pull requests -# always-run: true -# if: -# # Automatically assign reviewer when the pull request is ready for review. -# - rule: $isDraft() == false -# extra-actions: -# - $assignCodeAuthorReviewers() - +workflows: # This workflow praises contributors on their pull request contributions. # This helps contributors feel appreciated. - name: praise-contributors-on-milestones