We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 354a5e1 + 8fc1216 commit 7243bcfCopy full SHA for 7243bcf
.github/workflows/assigned.yaml
@@ -0,0 +1,17 @@
1
+name: Issue Assigned
2
+
3
+on:
4
+ issues:
5
+ types: [assigned]
6
7
+ pull_request_target:
8
9
+jobs:
10
+ send-mattermost-message:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: mattermost/action-mattermost-notify@master
14
+ with:
15
+ MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_ASSIGN_WEBHOOK }}
16
+ 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 }}
0 commit comments