-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.yaml
109 lines (108 loc) · 3.46 KB
/
manifest.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: github.com/getoutreach/stencil-base
## <<Stencil::Block(keys)>>
modules:
- name: github.com/getoutreach/devbase
postRunCommand:
- name: asdf install
command: ./scripts/devbase.sh; source .bootstrap/shell/lib/asdf.sh; asdf_devbase_ensure
- name: go mod tidy
command: go mod tidy -compat=1.17
- name: Format Files (step 1)
command: make fmt
- name: Generate Files
command: make gogenerate
- name: Format Files (step 2)
command: make fmt
- name: go mod tidy
command: go mod tidy -compat=1.17
- name: Install or upgrade release-related Node.js packages
command: if test -f yarn.lock; then yarn upgrade; else yarn; fi
arguments:
releaseOptions.enablePrereleases:
description: Enable prereleases
schema:
type: boolean
releaseOptions.prereleasesBranch:
description: The branch to watch for prereleases
schema:
type: string
releaseOptions.allowMajorVersions:
schema:
type: boolean
description: If set to true, the release configuration is updated to allow major version bumps via CI
description:
required: true
schema:
type: string
description: The purpose of this repository.
oss:
schema:
type: boolean
description: Whether or not this repository is open source.
service:
schema:
type: boolean
description: Whether or not this application is a runnable service. This flag provides the service activity interface and everything necessary for releasing and deploying a service.
serviceActivities:
schema:
type: array
items:
type: string
description: |-
Any valid built-in service activities can be supplied here and they will be provided.
The `service` flag must be set to true. See 'stencil-golang' for valid values, this will eventually be removed
from `stencil-base` as it's not meant to be used here.
reportingTeam:
required: true
schema:
type: string
description: Github team to be used as the CODEOWNER of this repository.
additionalRepoOwners:
schema:
type: array
items:
type: string
description: A list of GitHub teams who co-own the repository.
dependencies.optional:
schema:
type: array
items:
type: string
description: Dependencies your repository needs, but not always (e.g. E2E tests).
dependencies.required:
schema:
type: array
items:
type: string
description: Dependencies your repository requires to run successfully no matter what.
circleAPIKey:
schema:
type: string
description: A CircleCI API token generated for your project. If supplied it will render a CircleCI status badge in your README.md.
releaseOptions.allowPrereleases:
schema:
type: boolean
description: If set to true, the release configuration is updated to support prereleases
releaseOptions.force:
schema:
type: boolean
description: If this is set to true the `make release` step and assets declaration in .releaserc.yaml will render regardless of other arguments.
# TODO(jaredallard): Move this into a separate Go module
commands:
schema:
type: array
items:
anyOf:
- type: string
- type: object
description: A list of CLIs for this service
grpcClients:
schema:
type: array
items:
type: string
enum:
- node
- ruby
description: A list of languages to generate gRPC clients for
## <</Stencil::Block>>