From 72b62290d0d87f5aeb59e7d6f0ebcc8f4d87a8e9 Mon Sep 17 00:00:00 2001 From: Haruyaki <52639021+HarunamiYaki@users.noreply.github.com> Date: Fri, 29 Dec 2023 19:06:05 +0700 Subject: [PATCH 1/3] docs: Create security policy --- SECURITY.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..14b0b3f --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,5 @@ +# Security Policy + +## Reporting a Vulnerability + +To report a security vulnerability, please send an email to [support@typeslint.com](mailto:support@typeslint.com) \ No newline at end of file From 2d8fa8d7b7e2dba981833f34e4d857829d5cd07e Mon Sep 17 00:00:00 2001 From: Haruyaki <52639021+HarunamiYaki@users.noreply.github.com> Date: Fri, 29 Dec 2023 19:06:49 +0700 Subject: [PATCH 2/3] chore: Create PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..fc6342d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,3 @@ +## Changes + + From 510ca606302949296d3de97c0ea3a7d8bf6e0ecd Mon Sep 17 00:00:00 2001 From: Haruyaki <52639021+HarunamiYaki@users.noreply.github.com> Date: Fri, 29 Dec 2023 19:08:17 +0700 Subject: [PATCH 3/3] chore: Create Issues.yml for ISSUE_TEMPLATE --- .github/ISSUE_TEMPLATE/Issues.yml | 50 +++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/Issues.yml diff --git a/.github/ISSUE_TEMPLATE/Issues.yml b/.github/ISSUE_TEMPLATE/Issues.yml new file mode 100644 index 0000000..5af408c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Issues.yml @@ -0,0 +1,50 @@ +name: "Bug Report" +description: "Report a bug encountered while using the project." +labels: ["bug"] +body: + - type: markdown + attributes: + value: | + Welcome to the issue tracker! + + Before submitting your issue, please make sure to provide as much relevant information as possible. + + - type: input + attributes: + label: Issue Description + description: Provide a brief description of the issue you are facing. + + - type: input + attributes: + label: Expected Behavior + description: What should happen? + + - type: input + attributes: + label: Actual Behavior + description: What is happening instead? + + - type: textarea + attributes: + label: Steps to Reproduce + description: Describe the steps required to reproduce the issue, including code snippets, if relevant. + + - type: input + attributes: + label: NodeJS Environment + description: NodeJS Version + + - type: input + attributes: + label: Package Manager + description: NPM Version + + - type: dropdown + attributes: + label: Operating System + options: + - Windows + - macOS + - Linux + validations: + required: true