Skip to content
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

fix: reviewpad configuration #1551

Merged
merged 2 commits into from
May 17, 2023
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 to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Description

reviewpad:summary
23 changes: 1 addition & 22 deletions reviewpad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down