Skip to content

Commit 827cbec

Browse files
[CI] Deploy CI
Signed-off-by: cloudforet-admin <[email protected]>
1 parent 6d3c2f8 commit 827cbec

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: .github/workflows/pull_request_base_check.yaml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "[Pull Request] Base Check"
2+
3+
on:
4+
pull_request_target:
5+
6+
jobs:
7+
check-pull-request:
8+
name: Check Pull Request
9+
runs-on: ubuntu-latest
10+
permissions:
11+
pull-requests: write
12+
steps:
13+
- name: Check signed commits
14+
id: review
15+
uses: cloudforet-io/check-pr-action@v1
16+
with:
17+
token: ${{ secrets.GITHUB_TOKEN }}
18+
19+
- name: Notify Result
20+
if: ${{ steps.review.outputs.signedoff == 'false' }}
21+
run: |
22+
echo "The review result is ${{ steps.review.outputs.signedoff }}"
23+
exit 1

0 commit comments

Comments
 (0)