Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix: avoid running reviewpad on automated pull requests (#3397)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-mba authored Jan 20, 2023
1 parent d9e8423 commit ff246dc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/reviewpad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
reviewpad_job:
runs-on: ubuntu-latest
name: Reviewpad
# Don't run reviewpad on automated PRs
if: |
(github.event_name != "pull_request_target") ||
((github.event.pull_request.title != "Merge new release into main") &&
(github.event.pull_request.title != "Merge testimonial into main") &&
(github.event.pull_request.title != "Merge formatting into main"))
steps:
- name: Reviewpad
uses: reviewpad/[email protected]
Expand Down

0 comments on commit ff246dc

Please sign in to comment.