forked from EddieHubCommunity/BioDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 962 Bytes
/
reviewpad.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This file configures Reviewpad action to run on Issues and Pull Requests! 🦄
name: Reviewpad
on:
issues:
types:
- opened
- edited
issue_comment:
pull_request_target:
types:
- opened
- synchronize
- edited
# These permissions are necessary to automate pull requests from forks.
permissions:
pull-requests: write
issues: write
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]
with:
# Uncomment next line to use your own configuration file 💪
file: reviewpad.yml