From 624019a20de10fe0aa93574c15447e638feb9f87 Mon Sep 17 00:00:00 2001 From: "Alex M. - Clockwork" Date: Mon, 8 Jul 2024 12:58:45 +0300 Subject: [PATCH] feat: Add site blacklist template --- .../{chain.yaml => chain-add.yaml} | 0 .github/ISSUE_TEMPLATE/site-add.yaml | 31 +++++++++++++++++++ 2 files changed, 31 insertions(+) rename .github/ISSUE_TEMPLATE/{chain.yaml => chain-add.yaml} (100%) create mode 100644 .github/ISSUE_TEMPLATE/site-add.yaml diff --git a/.github/ISSUE_TEMPLATE/chain.yaml b/.github/ISSUE_TEMPLATE/chain-add.yaml similarity index 100% rename from .github/ISSUE_TEMPLATE/chain.yaml rename to .github/ISSUE_TEMPLATE/chain-add.yaml diff --git a/.github/ISSUE_TEMPLATE/site-add.yaml b/.github/ISSUE_TEMPLATE/site-add.yaml new file mode 100644 index 0000000..0b8d0e3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/site-add.yaml @@ -0,0 +1,31 @@ +name: Site Add +description: Add a site to the blacklist +title: "[Site-add]: " +body: + - type: input + id: url + attributes: + label: URL + description: Enter the URL of the site in question. + placeholder: e.g. phising-url.com + validations: + required: true + - type: textarea + id: user-note + attributes: + label: Notes + description: Why is this site malicious? + placeholder: e.g. Phising attempt + validations: + required: true + - type: dropdown + id: threat-level + attributes: + label: Threat level + description: What do you consider this site's threat-level to be? + options: + - 1 (Low) A warning should be displayed when interacting + - 2 (Medium) Site must be explicitly enabled in settings before interacting + - 3 (High) Site should not be allowed under any circumstances + validations: + required: true