forked from Chia-Network/repo-content-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
50 lines (42 loc) · 1.39 KB
/
config.yaml
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
# name: Should match the template filename and the property in github
# template_name the name of the template in the templates folder
# repo_path: The path in the repo to write the file to
# alternate_paths: Any paths listed here will be treated as the same file and renamed to the main repo_path
# Groups allow inheriting a potentially evolving set of templates for a particular project type without needing to
# constantly update the list of files in the repo settings
# Just set `group:<groupname>` in the repo settings instead
groups:
- name: base
templates:
- dep-review
- name: go
templates:
- go-makefile
- dependabot
- name: go-ci
templates:
- go-test
files:
- name: go-makefile
template_name: go-makefile
repo_path: Makefile
- name: go-test
template_name: go-test.yml
repo_path: .github/workflows/go-test.yml
alternate_paths:
- .github/go-test.yaml
- name: dependabot
template_name: dependabot.yml
repo_path: .github/dependabot.yml
alternate_paths:
- .github/dependabot.yaml
- name: go-dependabot
template_name: go-dependabot.yml
repo_path: .github/dependabot.yml
alternate_paths:
- .github/dependabot.yaml
- name: dep-review
template_name: dependency-review.yml
repo_path: .github/workflows/dependency-review.yml
alternate_paths:
- .github/workflows/dependency-review.yaml