-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustom-properties.yml
More file actions
44 lines (40 loc) · 1.2 KB
/
Copy pathcustom-properties.yml
File metadata and controls
44 lines (40 loc) · 1.2 KB
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
# Standalone custom properties file for use with custom-properties-file input
# Use with: custom-properties-file: './custom-properties.yml'
#
# These are the base properties applied to all organizations.
# Per-org overrides in orgs.yml layer on top (same name = override).
# Single-select property for team ownership
- name: team
value-type: single_select
required: true
description: 'The team that owns this repository'
allowed-values:
- platform
- frontend
- backend
- devops
- security
values-editable-by: org_actors
# Multi-select property for deployment environments
- name: environment
value-type: multi_select
required: false
description: 'Deployment environments for this repository'
allowed-values:
- production
- staging
- development
values-editable-by: org_and_repo_actors
# Boolean property for production flag
- name: is-production
value-type: true_false
required: false
default-value: 'false'
description: 'Whether this repository is used in production'
values-editable-by: org_actors
# Free-form string property
- name: cost-center
value-type: string
required: false
description: 'Cost center code for billing'
values-editable-by: org_actors