-
Notifications
You must be signed in to change notification settings - Fork 47
91 lines (78 loc) · 4.04 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
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
name: Release JDI Light and run examples
on:
release:
types:
- created
jobs:
check_examples:
name: Run examples and templates
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Webhook send to template testng
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-light-testng-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-light-junit-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to introduction
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-examples/jdi-introduction/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template bdd
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-light-bdd-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template browserstack
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-light-browserstack/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to example baeldung
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-examples/simple-jdi-light-baeldung/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template selenoid
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-light-selenoid-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template saucelabs
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-light-saucelabs/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to example intro
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-examples/01-jdi-light-intro/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template bdd no PO
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-bdd-no-po-tests/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'
- name: Webhook send to template gradle
uses: joelwmale/webhook-action@master
with:
url: 'https://api.github.com/repos/jdi-templates/jdi-gradle-template/dispatches'
headers: '{"Accept": "application/vnd.github+json", "Authorization": "${{ secrets.WEBHOOK_AUTH }}"}'
body: '{"event_type": "webhook"}'