Skip to content

Commit

Permalink
chore: PR 리뷰 알림 발동 조건 변경
Browse files Browse the repository at this point in the history
- codeowners를 통한 리뷰어 자동 등록이 review request를 3번 발동시키는 현상때문에 알람이 여러번 전송되는 문제 해결을 위함
- web29 팀에 대한 리뷰 요청이 마지막에 취소되는 것을 이용하여 발동 조건을 `review_request_remove`로 설정하였음.
  • Loading branch information
parkblo authored Nov 6, 2024
1 parent 5fb18b8 commit 14cac04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/REVIEW_REQUEST_ALERT.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: BeeBot
on:
pull_request:
types: [review_requested]
types: [review_request_removed]
jobs:
specific_review_requested:
notify_automatically_assigned_review_request:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 14cac04

Please sign in to comment.