forked from 3liz/lizmap-web-client
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (30 loc) · 896 Bytes
/
cron_e2e.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
name: "⏰ End2end"
on:
workflow_dispatch:
schedule:
# Run every monday at 3:00
- cron: '0 3 * * 1'
jobs:
cron-e2e:
runs-on: ubuntu-latest
steps:
- name: Branch master
uses: peter-evans/repository-dispatch@v3
with:
event-type: run-e2e-branches
client-payload: '{"branch": "master"}'
- name: Branch 3.9
uses: peter-evans/repository-dispatch@v3
with:
event-type: run-e2e-branches
client-payload: '{"branch": "release_3_9"}'
- name: Branch 3.8
uses: peter-evans/repository-dispatch@v3
with:
event-type: run-e2e-branches
client-payload: '{"branch": "release_3_8"}'
- name: Branch 3.7
uses: peter-evans/repository-dispatch@v3
with:
event-type: run-e2e-branches
client-payload: '{"branch": "release_3_7"}'