File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed
Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,6 @@ name: Issue Assigned
33on :
44 issues :
55 types : [assigned]
6-
7- pull_request_target :
8- types : [assigned]
96jobs :
107 send-mattermost-message :
118 runs-on : ubuntu-latest
1411 with :
1512 MATTERMOST_WEBHOOK_URL : ${{ secrets.MATTERMOST_ASSIGN_WEBHOOK }}
1613 TEXT : >
17- ${{ github.event.issue. assignee.login || github.event.pull_request.assignee.login }} assigned to "${{ github.event.issue.title || github.event.pull_request.title }}": ${{ github.event.issue.html_url || github.event.pull_request .html_url }}
14+ ${{ github.event.assignee.login }} assigned to "${{ github.event.issue.title }}": ${{ github.event.issue.html_url }}
Original file line number Diff line number Diff line change 1+ name : Review Requested
2+
3+ on :
4+ pull_request_target :
5+ types : [review_requested]
6+ jobs :
7+ send-mattermost-message :
8+ # Don't notify for the interim step of certbot/eff-devs being assigned
9+ if : ${{ github.event.requested_reviewer.login != ''}}
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : mattermost/action-mattermost-notify@master
13+ with :
14+ MATTERMOST_WEBHOOK_URL : ${{ secrets.MATTERMOST_ASSIGN_WEBHOOK }}
15+ TEXT : >
16+ Review requested from ${{ github.event.requested_reviewer.login }} for "${{ github.event.pull_request.title }}": ${{ github.event.pull_request.html_url }}
You can’t perform that action at this time.
0 commit comments