We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d8ee62 commit 5e63b4cCopy full SHA for 5e63b4c
.github/workflows/pr_approval.yml
@@ -5,9 +5,10 @@ name: Check PR Approvals
5
# To protect against that scenario, we can turn on number of approvals required to 2 in the github settings
6
# of the repository
7
on:
8
- pull_request_review:
9
- types: [submitted]
10
- workflow_dispatch:
+ pull_request:
+ # pull_request_review:
+ # types: [submitted]
11
+ # workflow_dispatch:
12
13
# Without these permissions, we get a 403 error from github
14
# for trying to modify the pull request for newer project.
@@ -16,7 +17,6 @@ permissions: write-all
16
17
18
jobs:
19
check-approvals:
- if: github.event.review.state == 'APPROVED' || github.event_name == 'workflow_dispatch'
20
runs-on: ubuntu-latest
21
steps:
22
- name: Checkout repository
0 commit comments