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 1306202 commit 436860eCopy full SHA for 436860e
.github/workflows/check-pull-request.yml
@@ -0,0 +1,24 @@
1
+# .github/workflows/check-pull-request.yml
2
+name: Check Pull Request
3
+
4
+on:
5
+ pull_request_target:
6
7
+jobs:
8
+ check-pull-request:
9
+ name: Check Pull Request
10
+ runs-on: ubuntu-latest
11
+ permissions:
12
+ pull-requests: write
13
+ steps:
14
+ - name: Check signed commits
15
+ id: review
16
+ uses: cloudforet-io/check-pr-action@v1
17
+ with:
18
+ token: ${{ secrets.GITHUB_TOKEN }}
19
20
+ - name: Notify Result
21
+ if: ${{ steps.review.outputs.signedoff == 'false' }}
22
+ run: |
23
+ echo "The review result is ${{ steps.review.outputs.signedoff }}"
24
+ exit 1
0 commit comments