-
Notifications
You must be signed in to change notification settings - Fork 39
47 lines (40 loc) · 1.1 KB
/
update_dependencies.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
name: Dependencies Updater
on:
workflow_dispatch:
schedule:
- cron: '0 1 * * 2'
jobs:
update_dependencies_annotation:
runs-on: ubuntu-latest
steps:
- name: Dependencies
uses: peiffer-innovations/[email protected]
with:
merge: true
paths: annotation
pull_request: true
token: ${{ secrets.REPO_TOKEN }}
update_dependencies_codegen:
needs:
- update_dependencies_annotation
runs-on: ubuntu-latest
steps:
- name: Dependencies
uses: peiffer-innovations/[email protected]
with:
merge: true
paths: codegen
pull_request: true
token: ${{ secrets.REPO_TOKEN }}
update_dependencies:
needs:
- update_dependencies_codegen
runs-on: ubuntu-latest
steps:
- name: Dependencies
uses: peiffer-innovations/[email protected]
with:
merge: true
paths: json_theme,json_theme/example
pull_request: true
token: ${{ secrets.REPO_TOKEN }}