Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions config/issue-fields.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Issue field definitions synced to target organizations
# See: https://docs.github.com/en/rest/orgs/issue-fields
# Captured from joshjohanning-org current state.

- name: Priority
description: 'Current importance level assigned to this issue'
data-type: single_select
visibility: organization_members_only
options:
- name: Urgent
color: pink
priority: 1
- name: High
color: red
priority: 2
- name: Medium
color: yellow
priority: 3
- name: Low
color: green
priority: 4

- name: Start date
description: 'Date when work on issue will begin'
data-type: date
visibility: organization_members_only

- name: Target date
description: 'Expected completion date for this issue'
data-type: date
visibility: organization_members_only

- name: Effort
description: 'Relative level of effort for completing this issue'
data-type: single_select
visibility: organization_members_only
options:
- name: High
color: red
priority: 1
- name: Medium
color: yellow
priority: 2
- name: Low
color: green
priority: 3
- name: Superlow
color: pink
priority: 4
2 changes: 2 additions & 0 deletions orgs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ orgs:
custom-repo-roles-file: './config/custom-repo-roles.yml'
actions-allow-list-file: './config/actions-allow-list.yml'
issue-types-file: './config/issue-types.yml'
issue-fields-file: './config/issue-fields.yml'
code-security-configurations-file: './config/code-security-configurations.yml'
rulesets-file:
- './config/rulesets/block-security-checks-updating.json'
Expand All @@ -24,6 +25,7 @@ orgs:
# --- Drift control: uncomment to delete resources not defined in config ---
# delete-unmanaged-properties: true
# delete-unmanaged-issue-types: true
# delete-unmanaged-issue-fields: true
# delete-unmanaged-rulesets: true
# delete-unmanaged-code-security-configurations: true
# delete-unmanaged-org-roles: true
Expand Down