Comment on pull requests
With Reviewpad, you can automatically add comments to the pull request.
There are three different mechanisms to add a comment to the pull request:
- Using the
comment
action. - Using the
commentOnce
action. - Using the
error
,info
orwarn
actions.
The difference between the modes is that the comment
action will add a comment every time the action is executed, commentOnce
will add a comment once no matter the amount of times the action is executed, while the other commenting actions are bundled together in a report comment which is also automatically updated.
Automatically comment the pull request
api-version: reviewpad.com/v3.x
mode: verbose
rules:
- name: empty-description
spec: '$description() == ""'
- name: is-first-time-contributor
spec: '$pullRequestCountBy($author()) == 1'
workflows:
- name: welcome-user
description: Welcome user first contribution
if:
- rule: is-first-time-contributor
then:
# Comment on pull request once
- '$commentOnce("Well done! This is your first contribution.")'
- name: comment-on-empty-description
description: Error on empty descriptions
if:
- rule: empty-description
then:
# Add error message to reviewpad report
- '$error("The description of the pull request cannot be empty.")'
- name: comment-on-pull-request
description: Example comment on pull request
if:
- 'true'
then:
# Add info message to reviewpad report
- '$info("Thanks for this pull request. @marcelosousa will take a look!")'
# Add warning message to reviewpad report
- '$warn("Please make sure the CI is green before merging.")'
You can see this workflow in action in the following pull request.