Label on Approval Count #110
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
| name: Label on Approval Count | |
| on: | |
| pull_request_review: | |
| types: [submitted, dismissed] | |
| jobs: | |
| call-reusable-labeler: | |
| uses: 33-Auto/.github/.github/workflows/reusable-label-on-approve.yml@main | |
| # with 키워드를 사용하여 input 값을 전달 | |
| with: | |
| # github.event.pull_request.number를 통해 현재 PR 번호를 전달 | |
| pr-number: ${{ github.event.pull_request.number }} | |
| secrets: | |
| # ORGANIZATION_TOKEN 전달 | |
| ORGANIZATION_TOKEN: ${{ secrets.ORGANIZATION_TOKEN }} |