add: Route53 RecordSet 정보에서 type A일경우 일부 데이터에서 Value가 없는 이슈 => 처리 다양성 개선 #97
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .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 |