@@ -30,7 +30,7 @@ All campaign tracking MUST key off `campaign_id: "{{.CampaignID}}"`.
3030| ` status ` | single-select | ` Todo ` / ` In Progress ` / ` Review required ` / ` Blocked ` / ` Done ` |
3131| ` campaign_id ` | text | Must equal ` {{.CampaignID}} ` |
3232| ` worker_workflow ` | text | workflow ID or ` "unknown" ` |
33- | ` repository ` | text | ` owner/repo ` |
33+ | ` target_repo ` | text | ` owner/repo ` |
3434| ` priority ` | single-select | ` High ` / ` Medium ` / ` Low ` |
3535| ` size ` | single-select | ` Small ` / ` Medium ` / ` Large ` |
3636| ` start_date ` | date | ` YYYY-MM-DD ` |
@@ -55,7 +55,7 @@ These rules apply to any time you write fields:
5555
5656- ` campaign_id ` : always ` {{.CampaignID}} `
5757- ` worker_workflow ` : workflow ID if known, else ` "unknown" `
58- - ` repository ` : extract ` owner/repo ` from the issue/PR URL
58+ - ` target_repo ` : extract ` owner/repo ` from the issue/PR URL
5959- ` priority ` : default ` Medium ` unless explicitly known
6060- ` size ` : default ` Medium ` unless explicitly known
6161- ` start_date ` : issue/PR ` created_at ` formatted ` YYYY-MM-DD `
@@ -92,7 +92,7 @@ update-project:
9292 status : " Todo" # "Done" if already closed/merged
9393 campaign_id : " {{.CampaignID}}"
9494 worker_workflow : " unknown"
95- repository : " owner/repo"
95+ target_repo : " owner/repo"
9696 priority : " Medium"
9797 size : " Medium"
9898 start_date : " 2025-12-15"
@@ -135,7 +135,7 @@ update-project:
135135 status: "Done"
136136 campaign_id: "{{.CampaignID}}"
137137 worker_workflow: "WORKFLOW_ID"
138- repository : "owner/repo"
138+ target_repo : "owner/repo"
139139 priority: "Medium"
140140 size: "Medium"
141141 start_date: "2025-12-15"
@@ -160,7 +160,7 @@ All writes MUST conform to this file and use `update-project` only.
160160
161161For every attempted item, record :
162162
163- - ` content_type` , `content_number`, `repository `
163+ - ` content_type` , `content_number`, `target_repo `
164164- action taken : ` noop | add | status_update | backfill | failed`
165165- error details if failed
166166
@@ -216,7 +216,7 @@ This checklist is designed to validate outputs before executing project writes.
216216- [ ] `fields.status` ∈ {`Todo`, `In Progress`, `Review required`, `Blocked`, `Done`}
217217- [ ] `fields.campaign_id` is present on first-add/backfill and equals `{{.CampaignID}}`
218218- [ ] `fields.worker_workflow` is present on first-add/backfill and is either a known workflow ID or `"unknown"`
219- - [ ] `fields.repository ` matches `owner/repo`
219+ - [ ] `fields.target_repo ` matches `owner/repo`
220220- [ ] `fields.priority` ∈ {`High`, `Medium`, `Low`}
221221- [ ] `fields.size` ∈ {`Small`, `Medium`, `Large`}
222222- [ ] `fields.start_date` matches `YYYY-MM-DD`
0 commit comments