diff options
author | 2023-02-23 19:29:15 +0800 | |
---|---|---|
committer | 2023-02-23 19:29:15 +0800 | |
commit | aed513d0814eb6f8b8ddb7f0aad23b3e7435743c (patch) | |
tree | 26b99718746d391a239efb64b318d5ab577d0212 | |
parent | 484f1cd932642de1ad79e28e9b25b43d07348438 (diff) | |
download | refined-github-aed513d0814eb6f8b8ddb7f0aad23b3e7435743c.tar.gz refined-github-aed513d0814eb6f8b8ddb7f0aad23b3e7435743c.tar.zst refined-github-aed513d0814eb6f8b8ddb7f0aad23b3e7435743c.zip |
Meta: Make issue template fields identifiable
Possible fix for:
https://github.com/refined-github/refined-github/pull/6382
https://github.com/refined-github/refined-github/issues/6300
-rw-r--r-- | .github/ISSUE_TEMPLATE/1_bug_report.yml | 12 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/2_feature_request.yml | 14 |
2 files changed, 15 insertions, 11 deletions
diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.yml b/.github/ISSUE_TEMPLATE/1_bug_report.yml index 262582ac..57a25418 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_bug_report.yml @@ -19,23 +19,27 @@ body: - Screenshots/video/gif demonstrating the bug, if it’s visual - Console errors, if any - - type: textarea + - id: description + type: textarea attributes: label: Description validations: required: true - - type: textarea + - id: repro + type: textarea attributes: label: How to replicate the issue + URL description: ‼️‼️‼️ Every bug report MUST include A REAL URL where the bug appears. If it happens on a private repo, find an equivalent public URL, even if it doesn't happen there. validations: required: true - - type: input + - id: version + type: input attributes: label: Extension version validations: required: true - - type: input + - id: browser + type: input attributes: label: Browser(s) used validations: diff --git a/.github/ISSUE_TEMPLATE/2_feature_request.yml b/.github/ISSUE_TEMPLATE/2_feature_request.yml index 9701aaa2..3470f07b 100644 --- a/.github/ISSUE_TEMPLATE/2_feature_request.yml +++ b/.github/ISSUE_TEMPLATE/2_feature_request.yml @@ -6,18 +6,18 @@ body: attributes: value: | 👉 Review our [guidelines](https://github.com/refined-github/refined-github/wiki/%22Can-you-add-this-feature%3F%22) to ensure this feature would make sense in Refined GitHub. - + 👋 Consider contributing by fixing some [easy bugs](https://github.com/refined-github/refined-github/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc+label%3A%22good+first+issue%22+label%3Abug). - - type: textarea + + 🏞️ You can provide screenshots/mockups to better visualize your idea. Files can be dropped in this field + - id: description + type: textarea attributes: label: Description validations: required: true - - type: textarea - attributes: - label: Screenshot - description: You can provide screenshots/mockups to better visualize your idea. Files can be dropped in this field - - type: textarea + - id: urls + type: textarea attributes: label: Example URLs description: Include a REAL URL where the feature should appear. e.g. Do you want a feature to appear on the main page of a repo? Paste a link to a repo |