File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Trigger Breaking Change Notifications
2+
3+ on :
4+ pull_request_target :
5+ types :
6+ - closed
7+ - reopened
8+ - labeled
9+ - unlabeled
10+
11+ jobs :
12+ trigger-notifier :
13+ if : contains(github.event.pull_request.labels.*.name, 'breaking')
14+ secrets : inherit
15+ uses :
rapidsai/shared-workflows/.github/workflows/[email protected] 16+ with :
17+ sender_login : ${{ github.event.sender.login }}
18+ sender_avatar : ${{ github.event.sender.avatar_url }}
19+ repo : ${{ github.repository }}
20+ pr_number : ${{ github.event.pull_request.number }}
21+ pr_title : " ${{ github.event.pull_request.title }}"
22+ pr_body : " ${{ github.event.pull_request.body || '_Empty PR description_' }}"
23+ pr_base_ref : ${{ github.event.pull_request.base.ref }}
24+ pr_author : ${{ github.event.pull_request.user.login }}
25+ event_action : ${{ github.event.action }}
26+ pr_merged : ${{ github.event.pull_request.merged }}
You can’t perform that action at this time.
0 commit comments