Skip to content

Commit c73ebac

Browse files
authored
Merge branch 'develop' into daniitadd-patch-1
2 parents 59f8718 + 6f8ce62 commit c73ebac

2 files changed

Lines changed: 19 additions & 1 deletion

File tree

.github/pull_request_template.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
## Issue ticket number and link
44

55
## Checklist before requesting a review
6-
76
- [ ] I have performed a self-review of my code
87
- [ ] If it is a core feature, I have added thorough tests
98
- [ ] Do we need to implement analytics?

.github/workflows/discord.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Discord notification
2+
3+
on:
4+
pull_request:
5+
types: [opened]
6+
7+
jobs:
8+
notify:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Send Discord notification
13+
run: |
14+
curl -H "Content-Type: application/json" \
15+
-X POST \
16+
-d '{
17+
"content":"New PR created: '${{ github.event.pull_request.html_url }}'"
18+
}' \
19+
${{ secrets.DISCORD_WEBHOOK }}

0 commit comments

Comments
 (0)