-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweekloop.config.example.yaml
More file actions
57 lines (50 loc) · 2.02 KB
/
Copy pathweekloop.config.example.yaml
File metadata and controls
57 lines (50 loc) · 2.02 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
45
46
47
48
49
50
51
52
53
54
55
56
57
# weekloop.config.example.yaml
#
# Copy this to weekloop.config.yaml (gitignored) and fill in your own values.
# Every field here is read by sync/sync.py and the connector you pick.
# Your initiatives, matching the `parent_initiative` value on your kanban cards.
# sync.py only emits a row for an initiative listed here: anything else in the
# "Initiative rows" table gets skipped and printed as a warning, not pushed. This list
# is how you scope what leaves your private board, in one place.
initiatives:
- fleet-telematics-rollout
- depot-consolidation
- vendor-panel-refresh
# The sectors your organisation uses. Not enforced, just validated: sync.py warns
# (does not error) if a row's Sector isn't in this list, since a typo here is a much
# smaller problem than a typo in the sheet everyone reads.
sectors:
- Utilities
- Transport
- Facilities
- Group
# Which connector sync.py pushes to: csv, json, or smartsheet.
# See sync/connectors/<name>.py or <name>_sink.py for what each one needs.
sink: csv
csv:
path: state/weekloop-rows.csv
json:
path: state/weekloop-rows.json
smartsheet:
# Region-specific base URL: a global tenant and a regionally-hosted one use
# different hosts. Get this wrong and every call 404s. See sync/connectors/
# smartsheet.py's docstring for the MFA-policy gotcha some tenants hit on reads.
api_base: https://api.smartsheet.com/2.0
sheet_id: "0000000000000000"
# Column NAMES on your sheet, matched by name at run time. Never hardcode column
# ids here: they are not stable across a sheet copy or a rebuild.
columns:
initiative: Initiative
week_ending: Week Ending
entry: Entry
sector: Sector
health: Health
update: Update
owner: Owner
ask: Ask / Next Step
# Optional: default owner email per initiative, used by the weekloop skill when
# drafting the Initiative rows table so it doesn't have to guess.
owner_placeholders:
fleet-telematics-rollout: alex.chen@example.com
depot-consolidation: sam.patel@example.com
vendor-panel-refresh: jordan.lee@example.com