-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
anvil.yml
51 lines (47 loc) · 1.2 KB
/
anvil.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
templateGroups:
commonGitFiles:
- destination: ".gitignore"
source: "gitignore.tmpl"
- destination: "sub"
source: "./subdirectory"
- destination: "LICENSE"
source: "LICENSE"
- destination: "Dockerfile"
sourceUrl: "https://raw.githubusercontent.com/cbrgm/promcheck/main/Dockerfile"
goSpecificFiles:
- destination: ".golangci.yml"
source: "golangci.tmpl"
projects:
- name: "example/repo1"
groups:
- groupName: "commonGitFiles"
values:
Author: "Some Author"
Year: "2023"
- groupName: "goSpecificFiles"
values:
golangciVersion: "1.53.x"
- name: "example/repo2"
files:
- destination: "far.txt"
content: |
this is some content {{ .Foo }}
values:
Foo: "Bar"
groups:
- groupName: "commonGitFiles"
values:
Author: "Chris Bargmann"
Year: "2023"
- name: "example/repo3"
files:
- destination: "far.txt"
content: |
this is some content {{ .Foo }}
values:
Foo: "Bar"
groups:
- groupName: "commonGitFiles"
values:
Author: "Chris Bargmann"
Year: "2023"