revert: restore the issue templates that were overwritten - #174
Merged
Conversation
The previous PR replaced tailored, repo-specific templates with generic ones. That was a mistake with a specific cause: the check that concluded 'no issue templates anywhere' queried each path with a files-only API call, which returns nothing for a directory, so existing .github/ISSUE_TEMPLATE/ directories read as absent. Restores bug_report.yml and config.yml as they were. The generic feature_request.yml is kept, since that one was genuinely additive. Signed-off-by: Chelsea Kelly-Reif (she/her) <ckellyreif@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR #173 replaced this repo's tailored issue templates with generic ones. This restores them.
What happened. The check that concluded "no issue templates anywhere" queried each community-health path with a files-only API call. That call returns nothing for a directory, so the existing
.github/ISSUE_TEMPLATE/directory read as absent and the templates were written over rather than skipped.What this restores, byte-for-byte as of bcbeb60 (the commit before #173):
bug_report.ymlconfig.ymlfeature_request.ymlis kept as-is. That one was genuinely additive, andreviewer-intake.ymlwas never touched.Verified with
git diff bcbeb60 -- .github/ISSUE_TEMPLATE/bug_report.yml .github/ISSUE_TEMPLATE/config.yml, which is empty.