-
Notifications
You must be signed in to change notification settings - Fork 16
42 lines (36 loc) · 1.6 KB
/
release.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
name: Release JDI Dark
on:
release:
types:
- created
jobs:
check_examples:
name: Run examples run
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Webhook send to template bdd testng
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-dark-bdd-testng-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template bdd junit
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-dark-bdd-junit-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template junit
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-dark-junit-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template testng
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-dark-testng-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'