Skip to content

Implement not only App config but also User config and integrate the User environment into the App environment #43

Implement not only App config but also User config and integrate the User environment into the App environment

Implement not only App config but also User config and integrate the User environment into the App environment #43

# .github/workflows/check-pull-request.yml
name: Check Pull Request
on:
pull_request_target:
jobs:
check-pull-request:
name: Check Pull Request
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Check signed commits
id: review
uses: cloudforet-io/check-pr-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Notify Result
if: ${{ steps.review.outputs.signedoff == 'false' }}
run: |
echo "The review result is ${{ steps.review.outputs.signedoff }}"
exit 1