From bf53282186ec4c57e6e82b2c793289454287c1a9 Mon Sep 17 00:00:00 2001 From: Brandon Beltz - NOAA Affiliate <136381970+BBeltz1@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:51:00 -0400 Subject: [PATCH 1/2] add new issue templates to tech doc added a template for bug reports and suggesting edits to tech doc pages --- .github/ISSUE_TEMPLATE/bug_report.yml | 31 ++++++ .github/ISSUE_TEMPLATE/page_edit.yml | 132 ++++++++++++++++++++++++++ 2 files changed, 163 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml create mode 100644 .github/ISSUE_TEMPLATE/page_edit.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..2a6d87c1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,31 @@ +name: SOE Tech Doc - Bug Report +description: Use this issue template to report bugs in the State of the Ecosystem technical documentation. +title: "[Bug Report]: " +labels: ["bug"] +assignees: "BBeltz1" +body: + - type: markdown + attributes: + value: | + Please use the fields below to identify the bug and provide related information we can use to troubleshoot. Thanks. + - type: textarea + id: bugdesc + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. + validations: + required: true + - type: textarea + id: bugdisc + attributes: + label: Describe the situation + description: How did you discover this bug? What were you trying to accomplish? + validations: + required: true + - type: textarea + id: addinfo + attributes: + label: Additional information + description: Add any other information about the problem here. + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/page_edit.yml b/.github/ISSUE_TEMPLATE/page_edit.yml new file mode 100644 index 00000000..ce93261e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/page_edit.yml @@ -0,0 +1,132 @@ +name: State of the Ecosystem - Edit Tech Doc Page +description: Use this issue template to suggest an edit to a page in the State of the Ecosystem technical documentation. +title: "[Tech DOc Page Edit]: " +labels: ["page edit"] +assignees: "BBeltz1" +body: + - type: markdown + attributes: + value: | + Please use this form to suggest edits to a tech doc page. + - type: input + id: contact1 + attributes: + label: Primary Contact + description: How can we get in touch with you if we need more info? + placeholder: ex. email@noaa.gov + validations: + required: true + - type: dropdown + id: techdoc_page + attributes: + label: Choose a tech doc page to suggest edits + description: Select from the drop down + options: + - Introduction +- 1 Data and Code Access +- 2 Trend Analysis +- 3 Regime Shift Analysis +- 4 Survey Data +- 5 Ecological Production Units +- 6 Conceptual Models +- 7 Glossary +- 8 Chesapeake Bay Water Quality Standards Attainment +- 9 Phytoplankton +- 10 Harmful Algal Bloom - Alexandrium Indicator +- 11 Submerged Aquatic Vegetation +- 12 Mesozooplankton Biomass at Wilkinson Basin +- 13 Zooplankton +- 14 Inshore bottom trawl surveys +- 15 Fish Condition Indicator +- 16 Habitat Diversity +- 17 Species Distribution Indicators +- 18 Forage Fish Energy Density +- 19 Spawning Timing +- 20 Expected Number of Species +- 21 Forage Fish Indices +- 22 Harbor Porpoise Bycatch +- 23 Highly Migratory Species POP Catch Per Unit Effort +- 24 Highly Migratory Species Landings +- 25 Highly Migratory Species Stock Status +- 26 Cetacean Distribution Shifts +- 27 Right Whale Abundance +- 28 Fish Productivity Indicators +- 29 Gray Seal Pups +- 30 Gulf of Maine Atlantic Salmon +- 31 Gray Seal Bycatch +- 32 Seabird diet and productivity - New England +- 33 Aggregate Groups +- 34 Bottom temperature - in situ +- 35 Bottom temperature - High Resolution +- 36 Seasonal SST Anomalies +- 37 Transition Dates +- 38 Long-term Sea Surface Temperature +- 39 Cold Pool Index +- 40 Gulf Stream Index +- 41 Slopewater proportions +- 42 Protected Species Hotspots +- 43 Warm Core Rings +- 44 Chesapeake Bay Salinity and Temperature +- 45 Chesapeake Bay Temperature Anomaly +- 46 Chesapeake Bay Seasonal SST Anomalies +- 47 Marine Heatwave +- 48 Ocean Acidification +- 49 Commercial Landings Data +- 50 Catch and Fleet Diversity +- 51 Ecosystem Overfishing +- 52 Recreational Fishing Indicators +- 53 Recreational Shark Fishing Indicators +- 54 MAFMC ABC/ACL and Catch +- 55 Bennet Indicator +- 56 Single Species Status Indicator +- 57 Fishery Reliance and Social Vulnerability +- 58 Aquaculture +- 59 Wind Energy Development Timeline +- 60 WEA Fishing Port Landings +- 61 Fisheries Revenue in Wind Development Areas +- 62 Annual SST Cycles +- 63 Bottom temperature - GLORYS +- 64 Calanus Stage +- 65 Habitat Occupancy Models +- 66 Habitat Vulnerability +- 67 Harmful Algal Bloom Indicator - Mid Atlantic +- 68 Harmful Algal Bloom Indicator - New England +- 69 Harmful Algal Blooms - Paralytic Shellfish Poisoning Indicator +- 70 Hudson River Flow +- 71 Plankton Diversity +- 72 Quota and Catch - New England +- 73 SAFMC managed spp +- 74 Sandlance +- 75 Species Density Estimates +- 76 Stomach fullness +- 77 Storminess Indicator +- 78 Thermal Habitat Projections +- 79 Verified Records of Southern Kingfish +- 80 Waterbird productivity - Mid-Atlantic +- 81 Wind lease areas and habitat occupancy overlap + validations: + required: true + - type: textarea + id: edit1 + attributes: + label: Page Edit 1 + description: Please identify the edit you want to suggest and the where it belongs. + placeholder: Type your edit here. + validations: + required: true + - type: textarea + id: edit2 + attributes: + label: Page Edit 2 (if applicable) + description: Please identify the edit you want to suggest and the where it belongs. + placeholder: Type your edit here. + validations: + required: false + - type: textarea + id: edit3 + attributes: + label: Page Edit 3 (if applicable) + description: Please identify the edit you want to suggest and the where it belongs. + placeholder: Type your edit here. + validations: + required: false From 47511fab63d62256c23f20400e602d5d9378aa11 Mon Sep 17 00:00:00 2001 From: Brandon Beltz - NOAA Affiliate <136381970+BBeltz1@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:54:10 -0400 Subject: [PATCH 2/2] syntax correction in page edit yml --- .github/ISSUE_TEMPLATE/page_edit.yml | 162 +++++++++++++-------------- 1 file changed, 81 insertions(+), 81 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/page_edit.yml b/.github/ISSUE_TEMPLATE/page_edit.yml index ce93261e..23dab5cc 100644 --- a/.github/ISSUE_TEMPLATE/page_edit.yml +++ b/.github/ISSUE_TEMPLATE/page_edit.yml @@ -23,87 +23,87 @@ body: description: Select from the drop down options: - Introduction -- 1 Data and Code Access -- 2 Trend Analysis -- 3 Regime Shift Analysis -- 4 Survey Data -- 5 Ecological Production Units -- 6 Conceptual Models -- 7 Glossary -- 8 Chesapeake Bay Water Quality Standards Attainment -- 9 Phytoplankton -- 10 Harmful Algal Bloom - Alexandrium Indicator -- 11 Submerged Aquatic Vegetation -- 12 Mesozooplankton Biomass at Wilkinson Basin -- 13 Zooplankton -- 14 Inshore bottom trawl surveys -- 15 Fish Condition Indicator -- 16 Habitat Diversity -- 17 Species Distribution Indicators -- 18 Forage Fish Energy Density -- 19 Spawning Timing -- 20 Expected Number of Species -- 21 Forage Fish Indices -- 22 Harbor Porpoise Bycatch -- 23 Highly Migratory Species POP Catch Per Unit Effort -- 24 Highly Migratory Species Landings -- 25 Highly Migratory Species Stock Status -- 26 Cetacean Distribution Shifts -- 27 Right Whale Abundance -- 28 Fish Productivity Indicators -- 29 Gray Seal Pups -- 30 Gulf of Maine Atlantic Salmon -- 31 Gray Seal Bycatch -- 32 Seabird diet and productivity - New England -- 33 Aggregate Groups -- 34 Bottom temperature - in situ -- 35 Bottom temperature - High Resolution -- 36 Seasonal SST Anomalies -- 37 Transition Dates -- 38 Long-term Sea Surface Temperature -- 39 Cold Pool Index -- 40 Gulf Stream Index -- 41 Slopewater proportions -- 42 Protected Species Hotspots -- 43 Warm Core Rings -- 44 Chesapeake Bay Salinity and Temperature -- 45 Chesapeake Bay Temperature Anomaly -- 46 Chesapeake Bay Seasonal SST Anomalies -- 47 Marine Heatwave -- 48 Ocean Acidification -- 49 Commercial Landings Data -- 50 Catch and Fleet Diversity -- 51 Ecosystem Overfishing -- 52 Recreational Fishing Indicators -- 53 Recreational Shark Fishing Indicators -- 54 MAFMC ABC/ACL and Catch -- 55 Bennet Indicator -- 56 Single Species Status Indicator -- 57 Fishery Reliance and Social Vulnerability -- 58 Aquaculture -- 59 Wind Energy Development Timeline -- 60 WEA Fishing Port Landings -- 61 Fisheries Revenue in Wind Development Areas -- 62 Annual SST Cycles -- 63 Bottom temperature - GLORYS -- 64 Calanus Stage -- 65 Habitat Occupancy Models -- 66 Habitat Vulnerability -- 67 Harmful Algal Bloom Indicator - Mid Atlantic -- 68 Harmful Algal Bloom Indicator - New England -- 69 Harmful Algal Blooms - Paralytic Shellfish Poisoning Indicator -- 70 Hudson River Flow -- 71 Plankton Diversity -- 72 Quota and Catch - New England -- 73 SAFMC managed spp -- 74 Sandlance -- 75 Species Density Estimates -- 76 Stomach fullness -- 77 Storminess Indicator -- 78 Thermal Habitat Projections -- 79 Verified Records of Southern Kingfish -- 80 Waterbird productivity - Mid-Atlantic -- 81 Wind lease areas and habitat occupancy overlap + - 1 Data and Code Access + - 2 Trend Analysis + - 3 Regime Shift Analysis + - 4 Survey Data + - 5 Ecological Production Units + - 6 Conceptual Models + - 7 Glossary + - 8 Chesapeake Bay Water Quality Standards Attainment + - 9 Phytoplankton + - 10 Harmful Algal Bloom - Alexandrium Indicator + - 11 Submerged Aquatic Vegetation + - 12 Mesozooplankton Biomass at Wilkinson Basin + - 13 Zooplankton + - 14 Inshore bottom trawl surveys + - 15 Fish Condition Indicator + - 16 Habitat Diversity + - 17 Species Distribution Indicators + - 18 Forage Fish Energy Density + - 19 Spawning Timing + - 20 Expected Number of Species + - 21 Forage Fish Indices + - 22 Harbor Porpoise Bycatch + - 23 Highly Migratory Species POP Catch Per Unit Effort + - 24 Highly Migratory Species Landings + - 25 Highly Migratory Species Stock Status + - 26 Cetacean Distribution Shifts + - 27 Right Whale Abundance + - 28 Fish Productivity Indicators + - 29 Gray Seal Pups + - 30 Gulf of Maine Atlantic Salmon + - 31 Gray Seal Bycatch + - 32 Seabird diet and productivity - New England + - 33 Aggregate Groups + - 34 Bottom temperature - in situ + - 35 Bottom temperature - High Resolution + - 36 Seasonal SST Anomalies + - 37 Transition Dates + - 38 Long-term Sea Surface Temperature + - 39 Cold Pool Index + - 40 Gulf Stream Index + - 41 Slopewater proportions + - 42 Protected Species Hotspots + - 43 Warm Core Rings + - 44 Chesapeake Bay Salinity and Temperature + - 45 Chesapeake Bay Temperature Anomaly + - 46 Chesapeake Bay Seasonal SST Anomalies + - 47 Marine Heatwave + - 48 Ocean Acidification + - 49 Commercial Landings Data + - 50 Catch and Fleet Diversity + - 51 Ecosystem Overfishing + - 52 Recreational Fishing Indicators + - 53 Recreational Shark Fishing Indicators + - 54 MAFMC ABC/ACL and Catch + - 55 Bennet Indicator + - 56 Single Species Status Indicator + - 57 Fishery Reliance and Social Vulnerability + - 58 Aquaculture + - 59 Wind Energy Development Timeline + - 60 WEA Fishing Port Landings + - 61 Fisheries Revenue in Wind Development Areas + - 62 Annual SST Cycles + - 63 Bottom temperature - GLORYS + - 64 Calanus Stage + - 65 Habitat Occupancy Models + - 66 Habitat Vulnerability + - 67 Harmful Algal Bloom Indicator - Mid Atlantic + - 68 Harmful Algal Bloom Indicator - New England + - 69 Harmful Algal Blooms - Paralytic Shellfish Poisoning Indicator + - 70 Hudson River Flow + - 71 Plankton Diversity + - 72 Quota and Catch - New England + - 73 SAFMC managed spp + - 74 Sandlance + - 75 Species Density Estimates + - 76 Stomach fullness + - 77 Storminess Indicator + - 78 Thermal Habitat Projections + - 79 Verified Records of Southern Kingfish + - 80 Waterbird productivity - Mid-Atlantic + - 81 Wind lease areas and habitat occupancy overlap validations: required: true - type: textarea