Workflow file for this run
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/request-pr-review.yml | ||
| name: PR Assignee & Team Review Request | ||
| on: | ||
| pull_request: | ||
| types: [opened, reopened, ready_for_review] | ||
| jobs: | ||
| call-reusable-workflow: | ||
| uses: 33-Auto/.github/.github/workflows/reusable-pr-assign-and-review.yml@main | ||
|
Check failure on line 11 in .github/workflows/request-pr-review.yml
|
||
| with: | ||
| # 여기에 리뷰를 요청할 팀의 slug를 입력합니다. | ||
| team-slug-for-review: 'Review_Avengers' | ||
| pr-author: ${{ github.event.pull_request.user.login }} | ||
| pr-number: ${{ github.event.pull_request.number }} | ||
| secrets: inherit | ||