From aef99313cc0ffcd4aadd1b81693b232160f4089d Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 01:21:00 +0800
Subject: [PATCH 01/16] Update issue templates
---
.github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++
.github/ISSUE_TEMPLATE/custom.md | 10 ++++++
.github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++
3 files changed, 68 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md
create mode 100644 .github/ISSUE_TEMPLATE/custom.md
create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 00000000..dd84ea78
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,38 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**To Reproduce**
+Steps to reproduce the behavior:
+1. Go to '...'
+2. Click on '....'
+3. Scroll down to '....'
+4. See error
+
+**Expected behavior**
+A clear and concise description of what you expected to happen.
+
+**Screenshots**
+If applicable, add screenshots to help explain your problem.
+
+**Desktop (please complete the following information):**
+ - OS: [e.g. iOS]
+ - Browser [e.g. chrome, safari]
+ - Version [e.g. 22]
+
+**Smartphone (please complete the following information):**
+ - Device: [e.g. iPhone6]
+ - OS: [e.g. iOS8.1]
+ - Browser [e.g. stock browser, safari]
+ - Version [e.g. 22]
+
+**Additional context**
+Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md
new file mode 100644
index 00000000..48d5f81f
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/custom.md
@@ -0,0 +1,10 @@
+---
+name: Custom issue template
+about: Describe this issue template's purpose here.
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 00000000..bbcbbe7d
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,20 @@
+---
+name: Feature request
+about: Suggest an idea for this project
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features you've considered.
+
+**Additional context**
+Add any other context or screenshots about the feature request here.
From edb038cbaa0863ed222e8b40d5223cd7a9e5b422 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 01:26:56 +0800
Subject: [PATCH 02/16] Create test.taml
---
.github/ISSUE_TEMPLATE/test.taml | 62 ++++++++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/test.taml
diff --git a/.github/ISSUE_TEMPLATE/test.taml b/.github/ISSUE_TEMPLATE/test.taml
new file mode 100644
index 00000000..89a085e9
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/test.taml
@@ -0,0 +1,62 @@
+name: Bug Report
+description: File a bug report
+title: "[Bug]: "
+labels: ["bug", "triage"]
+assignees:
+ - octocat
+body:
+ - type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report!
+ - type: input
+ id: contact
+ attributes:
+ label: Contact Details
+ description: How can we get in touch with you if we need more info?
+ placeholder: ex. email@example.com
+ validations:
+ required: false
+ - type: textarea
+ id: what-happened
+ attributes:
+ label: What happened?
+ description: Also tell us, what did you expect to happen?
+ placeholder: Tell us what you see!
+ value: "A bug happened!"
+ validations:
+ required: true
+ - type: dropdown
+ id: version
+ attributes:
+ label: Version
+ description: What version of our software are you running?
+ options:
+ - 1.0.2 (Default)
+ - 1.0.3 (Edge)
+ validations:
+ required: true
+ - type: dropdown
+ id: browsers
+ attributes:
+ label: What browsers are you seeing the problem on?
+ multiple: true
+ options:
+ - Firefox
+ - Chrome
+ - Safari
+ - Microsoft Edge
+ - type: textarea
+ id: logs
+ attributes:
+ label: Relevant log output
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
+ render: shell
+ - type: checkboxes
+ id: terms
+ attributes:
+ label: Code of Conduct
+ description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
+ options:
+ - label: I agree to follow this project's Code of Conduct
+ required: true
From d98719362db2bee2e38746838ba1417de0572d80 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 01:27:48 +0800
Subject: [PATCH 03/16] Rename test.taml to test.yaml
---
.github/ISSUE_TEMPLATE/{test.taml => test.yaml} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename .github/ISSUE_TEMPLATE/{test.taml => test.yaml} (100%)
diff --git a/.github/ISSUE_TEMPLATE/test.taml b/.github/ISSUE_TEMPLATE/test.yaml
similarity index 100%
rename from .github/ISSUE_TEMPLATE/test.taml
rename to .github/ISSUE_TEMPLATE/test.yaml
From e9bae791b4b41e37115299ce61af4a234ae740fc Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 01:49:19 +0800
Subject: [PATCH 04/16] Create config.yml
---
.github/ISSUE_TEMPLATE/config.yml | 5 +++++
1 file changed, 5 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/config.yml
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 00000000..8e999001
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
+blank_issues_enabled: false
+contact_links:
+ - name: Questions & support
+ url: https://matrix.to/#/#xxx:matrix.org
+ about: Please ask and answer questions here.
From a72d1e076257628bef40897e6cdc29681e4cd141 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 02:22:27 +0800
Subject: [PATCH 05/16] Delete custom.md
---
.github/ISSUE_TEMPLATE/custom.md | 10 ----------
1 file changed, 10 deletions(-)
delete mode 100644 .github/ISSUE_TEMPLATE/custom.md
diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md
deleted file mode 100644
index 48d5f81f..00000000
--- a/.github/ISSUE_TEMPLATE/custom.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-name: Custom issue template
-about: Describe this issue template's purpose here.
-title: ''
-labels: ''
-assignees: ''
-
----
-
-
From 64079d59e3d63d12ad4ccd21c3e848a9e4343009 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 03:10:45 +0800
Subject: [PATCH 06/16] Update and rename bug_report.md to bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.md | 38 -----------------
.github/ISSUE_TEMPLATE/bug_report.yaml | 59 ++++++++++++++++++++++++++
2 files changed, 59 insertions(+), 38 deletions(-)
delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md
create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index dd84ea78..00000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,38 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Describe the bug**
-A clear and concise description of what the bug is.
-
-**To Reproduce**
-Steps to reproduce the behavior:
-1. Go to '...'
-2. Click on '....'
-3. Scroll down to '....'
-4. See error
-
-**Expected behavior**
-A clear and concise description of what you expected to happen.
-
-**Screenshots**
-If applicable, add screenshots to help explain your problem.
-
-**Desktop (please complete the following information):**
- - OS: [e.g. iOS]
- - Browser [e.g. chrome, safari]
- - Version [e.g. 22]
-
-**Smartphone (please complete the following information):**
- - Device: [e.g. iPhone6]
- - OS: [e.g. iOS8.1]
- - Browser [e.g. stock browser, safari]
- - Version [e.g. 22]
-
-**Additional context**
-Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
new file mode 100644
index 00000000..a309c3d6
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -0,0 +1,59 @@
+name: 🐞 Bug
+description: File a bug/issue
+title: "[BUG]
"
+labels: [Bug, Needs Triage]
+body:
+- type: checkboxes
+ attributes:
+ label: Is there an existing issue for this?
+ description: Please search to see if an issue already exists for the bug you encountered.
+ options:
+ - label: I have searched the existing issues
+ required: true
+- type: textarea
+ attributes:
+ label: Current Behavior
+ description: A concise description of what you're experiencing.
+ validations:
+ required: false
+- type: textarea
+ attributes:
+ label: Expected Behavior
+ description: A concise description of what you expected to happen.
+ validations:
+ required: false
+- type: textarea
+ attributes:
+ label: Steps To Reproduce
+ description: Steps to reproduce the behavior.
+ placeholder: |
+ 1. In this environment...
+ 2. With this config...
+ 3. Run '...'
+ 4. See error...
+ validations:
+ required: false
+- type: textarea
+ attributes:
+ label: Environment
+ description: |
+ examples:
+ - **OS**: Ubuntu 20.04
+ - **Node**: 13.14.0
+ - **npm**: 7.6.3
+ value: |
+ - OS:
+ - Node:
+ - npm:
+ render: markdown
+ validations:
+ required: false
+- type: textarea
+ attributes:
+ label: Anything else?
+ description: |
+ Links? References? Anything that will give us more context about the issue you are encountering!
+
+ Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
+ validations:
+ required: false
From 00d3a0fa905655b04fb8ffe373700c234992b6fd Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 03:35:26 +0800
Subject: [PATCH 07/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index a309c3d6..28350324 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -1,7 +1,6 @@
-name: 🐞 Bug
-description: File a bug/issue
-title: "[BUG] "
-labels: [Bug, Needs Triage]
+name: Bug report
+description: Report a bug in the app or project itself
+labels: Bug, Needs Triage
body:
- type: checkboxes
attributes:
@@ -10,6 +9,13 @@ body:
options:
- label: I have searched the existing issues
required: true
+- type: checkboxes
+ attributes:
+ label: Are you sure this is NOT an issue about external scripts not working?
+ description: Please choose the correct type for issues about third-party user scripts.
+ options:
+ - label: I am sure it is NOT a user script issue
+ required: true
- type: textarea
attributes:
label: Current Behavior
@@ -48,6 +54,12 @@ body:
render: markdown
validations:
required: false
+- type: textarea
+ id: logs
+ attributes:
+ label: Relevant log output
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
+ render: shell
- type: textarea
attributes:
label: Anything else?
From 5a1c63f9b9635e0b2ea78b49aa13857421b89f07 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 03:42:10 +0800
Subject: [PATCH 08/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index 28350324..02e23abd 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -1,7 +1,11 @@
name: Bug report
description: Report a bug in the app or project itself
-labels: Bug, Needs Triage
+labels: [Bug, Needs Triage]
body:
+- type: markdown
+ attributes:
+ value: |
+ Thanks for taking the time to fill out this bug report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
@@ -12,7 +16,7 @@ body:
- type: checkboxes
attributes:
label: Are you sure this is NOT an issue about external scripts not working?
- description: Please choose the correct type for issues about third-party user scripts.
+ description: Please replace and choose the correct type for issues about third-party user scripts.
options:
- label: I am sure it is NOT a user script issue
required: true
From 31fd2316781615495726d5fabbbf1ae16fc84ec1 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:09:59 +0800
Subject: [PATCH 09/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index 02e23abd..e5d56e7d 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -43,18 +43,27 @@ body:
4. See error...
validations:
required: false
+- type: checkboxes
+ id: platform
+ attributes:
+ label: OS (Device)
+ description: In which operating systems did you test this issue?
+ options:
+ - label: macOS (Mac)
+ - label: iOS (iPhone)
+ - label: iPadOS (iPad)
- type: textarea
attributes:
label: Environment
description: |
examples:
- - **OS**: Ubuntu 20.04
- - **Node**: 13.14.0
- - **npm**: 7.6.3
+ - **OS version**: macOS 13.0.1, iOS 16.1.1, iPadOS 16.1.1
+ - **Safari version**: 16.1 (18614.2.9.1.12)
+ - **Userscripts version**: 4.3.3 (65)
value: |
- - OS:
- - Node:
- - npm:
+ - OS version:
+ - Safari version:
+ - Userscripts version:
render: markdown
validations:
required: false
From b1e20dcbce362024b1d4b540fd6ddb293913bb30 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:25:26 +0800
Subject: [PATCH 10/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index e5d56e7d..21941a84 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -57,12 +57,14 @@ body:
label: Environment
description: |
examples:
- - **OS version**: macOS 13.0.1, iOS 16.1.1, iPadOS 16.1.1
- - **Safari version**: 16.1 (18614.2.9.1.12)
+ - **OS/Safari version**: macOS 13.0.1 (22A400), Safari 16.1 (18614.2.9.1.12)
- **Userscripts version**: 4.3.3 (65)
+ - **OS/Safari version**: iOS 16.1.1
+ - **Userscripts version**: 1.3.3 (38)
+ - **OS/Safari version**: iPadOS 16.1.1
+ - **Userscripts version**: 1.3.3 (38)
value: |
- - OS version:
- - Safari version:
+ - OS/Safari version:
- Userscripts version:
render: markdown
validations:
From 88207b35439867a81fec8ff12a3c6e1c411160ac Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:29:00 +0800
Subject: [PATCH 11/16] Delete test.yaml
---
.github/ISSUE_TEMPLATE/test.yaml | 62 --------------------------------
1 file changed, 62 deletions(-)
delete mode 100644 .github/ISSUE_TEMPLATE/test.yaml
diff --git a/.github/ISSUE_TEMPLATE/test.yaml b/.github/ISSUE_TEMPLATE/test.yaml
deleted file mode 100644
index 89a085e9..00000000
--- a/.github/ISSUE_TEMPLATE/test.yaml
+++ /dev/null
@@ -1,62 +0,0 @@
-name: Bug Report
-description: File a bug report
-title: "[Bug]: "
-labels: ["bug", "triage"]
-assignees:
- - octocat
-body:
- - type: markdown
- attributes:
- value: |
- Thanks for taking the time to fill out this bug report!
- - type: input
- id: contact
- attributes:
- label: Contact Details
- description: How can we get in touch with you if we need more info?
- placeholder: ex. email@example.com
- validations:
- required: false
- - type: textarea
- id: what-happened
- attributes:
- label: What happened?
- description: Also tell us, what did you expect to happen?
- placeholder: Tell us what you see!
- value: "A bug happened!"
- validations:
- required: true
- - type: dropdown
- id: version
- attributes:
- label: Version
- description: What version of our software are you running?
- options:
- - 1.0.2 (Default)
- - 1.0.3 (Edge)
- validations:
- required: true
- - type: dropdown
- id: browsers
- attributes:
- label: What browsers are you seeing the problem on?
- multiple: true
- options:
- - Firefox
- - Chrome
- - Safari
- - Microsoft Edge
- - type: textarea
- id: logs
- attributes:
- label: Relevant log output
- description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
- render: shell
- - type: checkboxes
- id: terms
- attributes:
- label: Code of Conduct
- description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com)
- options:
- - label: I agree to follow this project's Code of Conduct
- required: true
From d3a361f1f816ef0f752bb124c79c9f667465d518 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:29:10 +0800
Subject: [PATCH 12/16] Delete feature_request.md
---
.github/ISSUE_TEMPLATE/feature_request.md | 20 --------------------
1 file changed, 20 deletions(-)
delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index bbcbbe7d..00000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-title: ''
-labels: ''
-assignees: ''
-
----
-
-**Is your feature request related to a problem? Please describe.**
-A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
-
-**Describe the solution you'd like**
-A clear and concise description of what you want to happen.
-
-**Describe alternatives you've considered**
-A clear and concise description of any alternative solutions or features you've considered.
-
-**Additional context**
-Add any other context or screenshots about the feature request here.
From 97a0cbecd19a7d7db3935bbb3b2749fca70167d6 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:30:47 +0800
Subject: [PATCH 13/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index 21941a84..8a508efc 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -1,6 +1,6 @@
name: Bug report
description: Report a bug in the app or project itself
-labels: [Bug, Needs Triage]
+labels: Bug, Needs Triage
body:
- type: markdown
attributes:
From 0e5a2b05932ce9ccdb33e7a14765602a8e95454d Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:31:59 +0800
Subject: [PATCH 14/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index 8a508efc..0c5e1a8b 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -1,6 +1,6 @@
name: Bug report
description: Report a bug in the app or project itself
-labels: Bug, Needs Triage
+labels: bug, triage
body:
- type: markdown
attributes:
From 0d4cc9582c9089cfce1432dfa598caecdd734d92 Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Wed, 7 Dec 2022 04:33:24 +0800
Subject: [PATCH 15/16] Update bug_report.yaml
---
.github/ISSUE_TEMPLATE/bug_report.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
index 0c5e1a8b..e9068c3d 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ b/.github/ISSUE_TEMPLATE/bug_report.yaml
@@ -1,6 +1,6 @@
name: Bug report
description: Report a bug in the app or project itself
-labels: bug, triage
+labels: bug, needs-triage
body:
- type: markdown
attributes:
From 5c599ec2ebe330feb7f4fce689afce3375dad7ff Mon Sep 17 00:00:00 2001
From: ACTCD <101378590+ACTCD@users.noreply.github.com>
Date: Sun, 1 Sep 2024 09:37:31 +0800
Subject: [PATCH 16/16] Create pull_request_template.md
---
.github/pull_request_template.md | 9 +++++++++
1 file changed, 9 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 00000000..56c306dd
--- /dev/null
+++ b/.github/pull_request_template.md
@@ -0,0 +1,9 @@
+# Welcome to Userscripts contributing guide
+
+### Please note: This project is currently temporarily suspended from receiving direct code contributions.
+
+Please do not submit any PR (it will be closed directly).
+
+If you have any ideas and suggestions, please submit them to us through [`Issues`](https://github.com/quoid/userscripts/issues) or [`Discussions`](https://github.com/quoid/userscripts/discussions).
+
+We apologize for the inconvenience and thank you for your understanding.