-
-
Notifications
You must be signed in to change notification settings - Fork 66
94 lines (84 loc) · 3.1 KB
/
notify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: "Discord Notification"
on:
pull_request:
types: [ opened ]
issues:
types: [ opened ]
workflow_run:
workflows: ["Build Artifact", "build"]
types: [completed]
branches: ["*"]
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: CI Build Success Notification
uses: sarisia/actions-status-discord@v1
with:
nodetail: true
title: "[${{ github.repository }}] ${{ github.actor }} pushed to `${{ github.ref }}`"
description: |
**Commits**:
● ${{ join(github.event.commits.*.message, '
● ') }}
---
**Link**: ${{ github.event.compare }}
color: 0x0000ff
username: ${{ github.actor }} on CFB
avatar_url: https://i.imgur.com/O4RKNqj.png
on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- name: CI Build Failure Notification
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: sarisia/actions-status-discord@v1
with:
nodetail: true
title: "[${{ github.repository }}] ${{ github.actor }} pushed to `${{ github.ref }}`"
description: |
**Commits**:
● ${{ join(github.event.commits.*.message, '
● ') }}
---
**Link**: ${{ github.event.compare }}
color: 0xff0000
username: ${{ github.actor }} on CFB
avatar_url: https://i.imgur.com/O4RKNqj.png
on-pull-requests:
runs-on: ubuntu-latest
steps:
- name: Triggering Pull Request Discord Notification
if: github.event_name == 'pull_request' && github.event.action == 'opened' && github.repository_owner == 'hugsy'
uses: sarisia/actions-status-discord@v1
with:
nodetail: true
title: ${{ github.actor }} created a new Pull Request (`#${{ github.event.pull_request.number }}`)
description: |
**${{ github.event.pull_request.title }}**
${{ github.event.pull_request.body }}
---
Link: ${{ github.event.pull_request.html_url }}
color: 0xff0000
username: ${{ github.actor }} on CFB
avatar_url: https://i.imgur.com/O4RKNqj.png
on-issues:
runs-on: ubuntu-latest
steps:
- name: Triggering Issue Discord Notification
if: github.event_name == 'issues' && github.event.action == 'opened' && github.repository_owner == 'hugsy'
uses: sarisia/actions-status-discord@v1
with:
nodetail: true
title: ${{ github.actor }} created a new Issue (`#${{ github.event.issue.number }}`)
description: |
**${{ github.event.issue.title }}**
${{ github.event.issue.body }}
---
Link: ${{ github.event.issue.html_url }}
color: 0x00ff00
username: ${{ github.actor }} on CFB
avatar_url: https://i.imgur.com/O4RKNqj.png