stacksgov / pm

Project management related to stacks governance
https://pm.stacksgov.com/
Creative Commons Zero v1.0 Universal
14 stars 7 forks source link

Fix issue templates #116

Closed whoabuddy closed 3 years ago

whoabuddy commented 3 years ago

After #100 the new issue templates are not showing. Two likely reasons:

GitHub help doc: https://docs.github.com/en/free-pro-team@latest/github/building-a-strong-community/configuring-issue-templates-for-your-repository

Could consider a stale issue template workflow like this one as well, but would need community input / possibly a separate issue to track.

lrettig commented 3 years ago

Per https://docs.github.com/en/free-pro-team@latest/github/building-a-strong-community/about-issue-and-pull-request-templates#issue-templates:

To be included in the community profile checklist, issue templates must be located in the .github/ISSUE_TEMPLATE folder and contain valid name: and about: YAML front matter.

I think it's the name syntax, try putting these in quotes, e.g.,

name: Agenda: Add Action Item

would become

name: "Agenda: Add Action Item"

friedger commented 3 years ago

Quotes are the solution: From https://docs.github.com/en/free-pro-team@latest/github/building-a-strong-community/manually-creating-a-single-issue-template-for-your-repository

Screenshot from 2020-11-19 10-27-50

whoabuddy commented 3 years ago

Thanks @friedger and @lrettig I knew it would be something simple!