-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
43 lines (37 loc) · 1.5 KB
/
Copy pathconfig.yaml.example
File metadata and controls
43 lines (37 loc) · 1.5 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
# Reference of the environment variables each provider reads.
# Production values are GitHub Secrets (see README); this file only documents
# them. The sync tool is configured entirely through the environment.
common:
TRACKER_PROVIDER: jira # jira | github | linear | youtrack | azure
PROJECT_KEYS: "SECO,DEVOPS" # PROJ-123 trackers; optional allowlist
KEY_PATTERN: "" # override the key regex if needed
SKIP_DRAFT_PRS: "false"
# Optional generic transition targets (providers fall back to these):
TRACKER_STATE_IN_REVIEW: ""
TRACKER_STATE_DONE: ""
jira:
JIRA_BASE_URL: "https://example-org.atlassian.net"
JIRA_USER_EMAIL: "automation@example-org.com" # omit for bearer auth
JIRA_API_TOKEN: "***"
JIRA_API_VERSION: "3" # 3 = Cloud, 2 = Data Center
JIRA_AUTH: "basic" # basic | bearer (PAT on Data Center)
JIRA_TRANSITION_IN_REVIEW: "In Review"
JIRA_TRANSITION_DONE: "Done"
github:
# GITHUB_TOKEN is injected by Actions; no secret needed.
GITHUB_LABEL_IN_REVIEW: "" # optional label applied on open
linear:
LINEAR_API_KEY: "***"
LINEAR_STATE_IN_REVIEW: "In Review"
LINEAR_STATE_DONE: "Done"
youtrack:
YOUTRACK_BASE_URL: "https://example-org.youtrack.cloud"
YOUTRACK_TOKEN: "***"
YOUTRACK_STATE_IN_REVIEW: "In Review"
YOUTRACK_STATE_DONE: "Done"
azure:
AZURE_ORG_URL: "https://dev.azure.com/example-org"
AZURE_PROJECT: "example-project"
AZURE_PAT: "***"
AZURE_STATE_IN_REVIEW: "Active"
AZURE_STATE_DONE: "Closed"