From eacd250a15c7135305170b20f8b374c55464a805 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Mon, 24 Feb 2025 11:01:40 -0600 Subject: [PATCH 1/4] Update issue templates to use new issue type field GitHub added a new issue type field to indicate whether an issue is a bug, feature, or task. This switches issue templates to use this new field instead of labels. Resolves #3368 --- .github/ISSUE_TEMPLATE/NCO_bug_report.yml | 1 + .github/ISSUE_TEMPLATE/bug_report.yml | 3 ++- .github/ISSUE_TEMPLATE/dump_request.yml | 1 + .github/ISSUE_TEMPLATE/feature_request.yml | 3 ++- .github/ISSUE_TEMPLATE/production_update.yml | 1 + .github/ISSUE_TEMPLATE/static_data.yml | 1 + 6 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml index 79632779aa..a7016d838b 100644 --- a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml @@ -1,6 +1,7 @@ name: NCO Bug Report description: Report something that is incorrect or broken labels: ["nco-bug", "triage"] +type: ["bug"] assignees: - aerorahul diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d43d2eb3d7..1b3a11a9c8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,7 @@ name: Bug Report description: Report something that is incorrect or broken -labels: ["bug", "triage"] +labels: ["triage"] +type: ["bug"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/dump_request.yml b/.github/ISSUE_TEMPLATE/dump_request.yml index 4481e7f6e0..b3bb5c97d2 100644 --- a/.github/ISSUE_TEMPLATE/dump_request.yml +++ b/.github/ISSUE_TEMPLATE/dump_request.yml @@ -1,6 +1,7 @@ name: Global Observation Dump Request description: Request additional dates be added to a machine's global dump archive (GDA) or introduce experimental dump data to the GDA labels: ["Static Data Mgmt"] +type: ["task"] assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 7e0ddb2459..dd1ebedf7a 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,7 @@ name: Feature Request description: Request new capability -labels: ["feature", "triage"] +labels: ["triage"] +type: ["feature"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/production_update.yml b/.github/ISSUE_TEMPLATE/production_update.yml index cb1fb588d8..70ba2544cf 100644 --- a/.github/ISSUE_TEMPLATE/production_update.yml +++ b/.github/ISSUE_TEMPLATE/production_update.yml @@ -1,6 +1,7 @@ name: Production Update description: Begin the process of an operational production update labels: ["production update", "triage"] +type: ["feature"] assignees: - WalterKolczynski-NOAA - KateFriedman-NOAA diff --git a/.github/ISSUE_TEMPLATE/static_data.yml b/.github/ISSUE_TEMPLATE/static_data.yml index f29f155cf8..13d684f522 100644 --- a/.github/ISSUE_TEMPLATE/static_data.yml +++ b/.github/ISSUE_TEMPLATE/static_data.yml @@ -1,6 +1,7 @@ name: Static Data Update description: Request static data be added or updated labels: ["Static Data Mgmt"] +type: ["task"] assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA From c142b7eba50c7284f2ecc1b258be14c092fa0eaa Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Mon, 24 Feb 2025 13:02:36 -0600 Subject: [PATCH 2/4] Switch from list to string for issue type --- .github/ISSUE_TEMPLATE/NCO_bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/dump_request.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- .github/ISSUE_TEMPLATE/production_update.yml | 2 +- .github/ISSUE_TEMPLATE/static_data.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml index a7016d838b..5ac58b23fd 100644 --- a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml @@ -1,7 +1,7 @@ name: NCO Bug Report description: Report something that is incorrect or broken labels: ["nco-bug", "triage"] -type: ["bug"] +type: bug assignees: - aerorahul diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 1b3a11a9c8..0ea1866d3e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,7 @@ name: Bug Report description: Report something that is incorrect or broken labels: ["triage"] -type: ["bug"] +type: bug body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/dump_request.yml b/.github/ISSUE_TEMPLATE/dump_request.yml index b3bb5c97d2..6a08870a23 100644 --- a/.github/ISSUE_TEMPLATE/dump_request.yml +++ b/.github/ISSUE_TEMPLATE/dump_request.yml @@ -1,7 +1,7 @@ name: Global Observation Dump Request description: Request additional dates be added to a machine's global dump archive (GDA) or introduce experimental dump data to the GDA labels: ["Static Data Mgmt"] -type: ["task"] +type: task assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index dd1ebedf7a..339c314e43 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,7 @@ name: Feature Request description: Request new capability labels: ["triage"] -type: ["feature"] +type: feature body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/production_update.yml b/.github/ISSUE_TEMPLATE/production_update.yml index 70ba2544cf..26889f6a72 100644 --- a/.github/ISSUE_TEMPLATE/production_update.yml +++ b/.github/ISSUE_TEMPLATE/production_update.yml @@ -1,7 +1,7 @@ name: Production Update description: Begin the process of an operational production update labels: ["production update", "triage"] -type: ["feature"] +type: feature assignees: - WalterKolczynski-NOAA - KateFriedman-NOAA diff --git a/.github/ISSUE_TEMPLATE/static_data.yml b/.github/ISSUE_TEMPLATE/static_data.yml index 13d684f522..34deef23fd 100644 --- a/.github/ISSUE_TEMPLATE/static_data.yml +++ b/.github/ISSUE_TEMPLATE/static_data.yml @@ -1,7 +1,7 @@ name: Static Data Update description: Request static data be added or updated labels: ["Static Data Mgmt"] -type: ["task"] +type: task assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA From 03c9daabf7c4a18c48cda3e7fa0ae89911b42483 Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Tue, 25 Feb 2025 09:24:25 -0600 Subject: [PATCH 3/4] Add projects to issue templates, try again to fix issue type --- .github/ISSUE_TEMPLATE/NCO_bug_report.yml | 3 ++- .github/ISSUE_TEMPLATE/bug_report.yml | 3 ++- .github/ISSUE_TEMPLATE/dump_request.yml | 3 ++- .github/ISSUE_TEMPLATE/feature_request.yml | 3 ++- .github/ISSUE_TEMPLATE/production_update.yml | 3 ++- .github/ISSUE_TEMPLATE/static_data.yml | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml index 5ac58b23fd..c42ea1a1fb 100644 --- a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml @@ -1,7 +1,8 @@ name: NCO Bug Report description: Report something that is incorrect or broken labels: ["nco-bug", "triage"] -type: bug +type: "bug" +projects: ["global-workflow development"] assignees: - aerorahul diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0ea1866d3e..1f7429784b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,7 +1,8 @@ name: Bug Report description: Report something that is incorrect or broken labels: ["triage"] -type: bug +type: "bug" +projects: ["global-workflow development"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/dump_request.yml b/.github/ISSUE_TEMPLATE/dump_request.yml index 6a08870a23..3336cdcbeb 100644 --- a/.github/ISSUE_TEMPLATE/dump_request.yml +++ b/.github/ISSUE_TEMPLATE/dump_request.yml @@ -1,7 +1,8 @@ name: Global Observation Dump Request description: Request additional dates be added to a machine's global dump archive (GDA) or introduce experimental dump data to the GDA labels: ["Static Data Mgmt"] -type: task +type: "task" +projects: ["global-workflow development"] assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 339c314e43..d0b7d33033 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,7 +1,8 @@ name: Feature Request description: Request new capability labels: ["triage"] -type: feature +type: "feature" +projects: ["global-workflow development"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/production_update.yml b/.github/ISSUE_TEMPLATE/production_update.yml index 26889f6a72..d77556fa17 100644 --- a/.github/ISSUE_TEMPLATE/production_update.yml +++ b/.github/ISSUE_TEMPLATE/production_update.yml @@ -1,7 +1,8 @@ name: Production Update description: Begin the process of an operational production update labels: ["production update", "triage"] -type: feature +type: "feature" +projects: ["global-workflow development"] assignees: - WalterKolczynski-NOAA - KateFriedman-NOAA diff --git a/.github/ISSUE_TEMPLATE/static_data.yml b/.github/ISSUE_TEMPLATE/static_data.yml index 34deef23fd..90e1083064 100644 --- a/.github/ISSUE_TEMPLATE/static_data.yml +++ b/.github/ISSUE_TEMPLATE/static_data.yml @@ -1,7 +1,8 @@ name: Static Data Update description: Request static data be added or updated labels: ["Static Data Mgmt"] -type: task +type: "task" +projects: ["global-workflow development"] assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA From 38061488dd66171a6cf44d773819075a7d7d28af Mon Sep 17 00:00:00 2001 From: "Walter.Kolczynski" Date: Tue, 25 Feb 2025 09:28:04 -0600 Subject: [PATCH 4/4] Use correct project format --- .github/ISSUE_TEMPLATE/NCO_bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/dump_request.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- .github/ISSUE_TEMPLATE/production_update.yml | 2 +- .github/ISSUE_TEMPLATE/static_data.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml index c42ea1a1fb..dee240c745 100644 --- a/.github/ISSUE_TEMPLATE/NCO_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/NCO_bug_report.yml @@ -2,7 +2,7 @@ name: NCO Bug Report description: Report something that is incorrect or broken labels: ["nco-bug", "triage"] type: "bug" -projects: ["global-workflow development"] +projects: ["NOAA-EMC/41"] assignees: - aerorahul diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 1f7429784b..b0dd17d59e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -2,7 +2,7 @@ name: Bug Report description: Report something that is incorrect or broken labels: ["triage"] type: "bug" -projects: ["global-workflow development"] +projects: ["NOAA-EMC/41"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/dump_request.yml b/.github/ISSUE_TEMPLATE/dump_request.yml index 3336cdcbeb..147f5a1b3d 100644 --- a/.github/ISSUE_TEMPLATE/dump_request.yml +++ b/.github/ISSUE_TEMPLATE/dump_request.yml @@ -2,7 +2,7 @@ name: Global Observation Dump Request description: Request additional dates be added to a machine's global dump archive (GDA) or introduce experimental dump data to the GDA labels: ["Static Data Mgmt"] type: "task" -projects: ["global-workflow development"] +projects: ["NOAA-EMC/41"] assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index d0b7d33033..a5401a3579 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -2,7 +2,7 @@ name: Feature Request description: Request new capability labels: ["triage"] type: "feature" -projects: ["global-workflow development"] +projects: ["NOAA-EMC/41"] body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/production_update.yml b/.github/ISSUE_TEMPLATE/production_update.yml index d77556fa17..2025caffaa 100644 --- a/.github/ISSUE_TEMPLATE/production_update.yml +++ b/.github/ISSUE_TEMPLATE/production_update.yml @@ -2,7 +2,7 @@ name: Production Update description: Begin the process of an operational production update labels: ["production update", "triage"] type: "feature" -projects: ["global-workflow development"] +projects: ["NOAA-EMC/41"] assignees: - WalterKolczynski-NOAA - KateFriedman-NOAA diff --git a/.github/ISSUE_TEMPLATE/static_data.yml b/.github/ISSUE_TEMPLATE/static_data.yml index 90e1083064..f0b08e8bdb 100644 --- a/.github/ISSUE_TEMPLATE/static_data.yml +++ b/.github/ISSUE_TEMPLATE/static_data.yml @@ -2,7 +2,7 @@ name: Static Data Update description: Request static data be added or updated labels: ["Static Data Mgmt"] type: "task" -projects: ["global-workflow development"] +projects: ["NOAA-EMC/41"] assignees: - KateFriedman-NOAA - WalterKolczynski-NOAA