From 9e48e8aa3af062c615904763d4da6ad289103052 Mon Sep 17 00:00:00 2001 From: Lotte Pitcher Date: Thu, 1 Oct 2020 11:05:11 +0100 Subject: [PATCH] use 'contact links' config feature to replace issue templates that link elsewhere --- .github/ISSUE_TEMPLATE/4_Support_question.md | 9 ------ .../ISSUE_TEMPLATE/5_Documentation_issue.md | 9 ------ .github/ISSUE_TEMPLATE/6_Security_issue.md | 31 ------------------- .github/ISSUE_TEMPLATE/config.yml | 11 +++++++ 4 files changed, 11 insertions(+), 49 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/4_Support_question.md delete mode 100644 .github/ISSUE_TEMPLATE/5_Documentation_issue.md delete mode 100644 .github/ISSUE_TEMPLATE/6_Security_issue.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/4_Support_question.md b/.github/ISSUE_TEMPLATE/4_Support_question.md deleted file mode 100644 index 829df982f9..0000000000 --- a/.github/ISSUE_TEMPLATE/4_Support_question.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: ⁉️ Support Question -about: Having trouble with Umbraco? -> https://our.umbraco.com ---- - -This issue tracker is NOT meant for support questions. If you have a question, -please join us on the forum at https://our.umbraco.com. - -Thanks! diff --git a/.github/ISSUE_TEMPLATE/5_Documentation_issue.md b/.github/ISSUE_TEMPLATE/5_Documentation_issue.md deleted file mode 100644 index 8893647aa8..0000000000 --- a/.github/ISSUE_TEMPLATE/5_Documentation_issue.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: 📖 Documentation Issue -about: See https://github.com/umbraco/UmbracoDocs/issues for documentation issues ---- - -The Umbraco documentation has its own dedicated repository. Please open your -documentation-related issue at https://github.com/umbraco/UmbracoDocs/issues - -Thanks! diff --git a/.github/ISSUE_TEMPLATE/6_Security_issue.md b/.github/ISSUE_TEMPLATE/6_Security_issue.md deleted file mode 100644 index 84c5f5989c..0000000000 --- a/.github/ISSUE_TEMPLATE/6_Security_issue.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: 🔐 Security Issue -about: Discovered a Security Issue in Umbraco? ---- - -⚠️ PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, SEE BELOW. - -If you have found a security issue in Umbraco, please send the details to -security@umbraco.com and don't disclose it publicly until we can provide a fix for -it. If you wish, we'll credit you for finding verified issues, when we release -the patched version. - -❗ Please read more about how to report security issues on https://umbraco.com/security - -A note on "Self XSS" --------------------- - -Umbraco is a CMS, that allows users to edit content on a website. As such, -all _authenticated users_ can: - - - Edit content, and (depending on the field types) insert HTML and CSS in that - content, with a variety of allowed attributes. - - Depending on the user level: Edit template files, and insert C#, HTML, CSS and - javascript in so on. - - Upload files to the site, which will become publicly available. - -We see these functionalities as _features_, and not as security issues. Please -report the mentioned items only if they can be performed by non-authorized -users, or other exploitable vulnerabilities. - -Thanks! diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000000..37d1be9158 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: true +contact_links: + - name: ⁉️ Support Question + url: https://our.umbraco.com + about: This issue tracker is NOT meant for support questions. If you have a question, please join us on the forum. + - name: 📖 Documentation Issue + url: https://github.com/umbraco/UmbracoDocs/issues + about: Documentation issues should be reported on the Umbraco documentation repository. + - name: 🔐 Security Issue + url: https://umbraco.com/about-us/trust-center/security-and-umbraco/how-to-report-a-vulnerability-in-umbraco/ + about: Discovered a Security Issue in Umbraco? \ No newline at end of file