From b71484dc7639c809ad971fc483f480dcda0a2acb Mon Sep 17 00:00:00 2001 From: Brent Huisman <brenthuisman@users.noreply.github.com> Date: Fri, 5 Mar 2021 14:31:34 +0100 Subject: [PATCH] Fix yaml, now all templates should show up (#1416) * Correct some malformed YAML. --- .github/ISSUE_TEMPLATE/bug_report.md | 3 ++- .github/ISSUE_TEMPLATE/enhancement_proposal.md | 4 +++- .github/ISSUE_TEMPLATE/feature_request.md | 4 +++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index ddadd358..cb97d3b0 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,8 @@ name: Bug report about: Create a report to help us improve. If you need help setting up your simulation with Arbor, please start a new topic in Discussions. title: '' -labels: 'bug' +labels: +- 'bug' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/enhancement_proposal.md b/.github/ISSUE_TEMPLATE/enhancement_proposal.md index 173a6c21..28885d1f 100644 --- a/.github/ISSUE_TEMPLATE/enhancement_proposal.md +++ b/.github/ISSUE_TEMPLATE/enhancement_proposal.md @@ -2,7 +2,9 @@ name: Arbor Enhancement Proposal about: 'An outline and rationale for a new feature or major change to Arbor. ' title: 'AEP: [PROPOSAL]' -labels: 'AEP', 'enhancement' +labels: +- 'AEP' +- 'enhancement' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 1d93c4c3..2133fbef 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,9 @@ name: Feature request about: 'Suggest an idea for Arbor. Add a clear and concise description of what the problem is and what you want to happen instead. ' title: '' -labels: 'enhancement', 'help wanted' +labels: +- 'enhancement' +- 'help wanted' assignees: '' --- -- GitLab