aboutsummaryrefslogtreecommitdiffstats
path: root/.github/ISSUE_TEMPLATE
diff options
context:
space:
mode:
authorMatthew Strapp <matt@mattstrapp.net>2024-10-28 13:37:20 -0500
committerGitHub <noreply@github.com>2024-10-28 13:37:20 -0500
commit7f1529eb1c6be69318f95f2ce90b09bcf0eec232 (patch)
tree72b1a2adb1ac248f6dda903b89e6c77ee84531a0 /.github/ISSUE_TEMPLATE
downloadscoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.tar
scoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.tar.gz
scoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.tar.bz2
scoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.tar.lz
scoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.tar.xz
scoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.tar.zst
scoop-7f1529eb1c6be69318f95f2ce90b09bcf0eec232.zip
Initial commit
Diffstat (limited to '')
-rw-r--r--.github/ISSUE_TEMPLATE/bug-report.yml113
-rw-r--r--.github/ISSUE_TEMPLATE/config.yml6
-rw-r--r--.github/ISSUE_TEMPLATE/hash-error.yml19
-rw-r--r--.github/ISSUE_TEMPLATE/package-request.yml52
4 files changed, 190 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
new file mode 100644
index 0000000..9f313b0
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -0,0 +1,113 @@
+name: 🐛 Bug Report
+description: Open an issue about a bug that needs fixing.
+title: "[Bug]: "
+labels: ["bug"]
+body:
+- type: checkboxes
+ attributes:
+ label: Prerequisites
+ options:
+ - label: I have written a descriptive issue title.
+ required: true
+ - label: I have searched all issues/PRs to ensure it has not already been reported or fixed.
+ required: true
+ - label: I have verified that I am using the latest version of Scoop and corresponding bucket.
+ required: true
+- type: input
+ attributes:
+ label: Package Name
+ description: Name of package (install name) which has bug(s)
+ placeholder: e.g. 7zip (not '7-Zip')
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Expected/Current Behaviour
+ description: A clear and concise description of what you expected to happen and what actually happen.
+ placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Steps to Reproduce
+ description: List of steps, sample code or failing test that reproduces the behavior.
+ render: console
+ placeholder: |
+ PS> scoop install tests/meson
+ Installing 'meson' (0.61.1) [64bit]
+ Loading meson-0.61.1-64.msi from cache.
+ Checking hash of meson-0.61.1-64.msi ... ok.
+ Extracting meson-0.61.1-64.msi ... done.
+ Running installer script...
+ Linking D:\Scoop\apps\meson\current => D:\Scoop\apps\meson\0.61.1
+ Creating shim for 'meson'.
+ Can't shim 'meson.exe': File doesn't exist.
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Possible Solution
+ description: Do you have some suggestions on a fix for the bug?
+ placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Scoop and Buckets Version
+ description: Paste verbatim output from `scoop --version` below.
+ render: console
+ placeholder: |
+ PS> scoop --version
+ Current Scoop version:
+ c60df9cd (HEAD -> develop, origin/develop) docs(changelog): Prepare for version 0.3.1 (#5248)
+
+ 'extras' bucket:
+ ea314b213 (HEAD -> master, origin/master, origin/HEAD) lazygit: Update to version 0.36.0
+
+ 'main' bucket:
+ c6e688d4d (HEAD -> master, origin/master, origin/HEAD) x265: Update to version 3.5+68-40e37bc
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Scoop Config
+ description: Paste verbatim output from `scoop config` below.
+ render: console
+ placeholder: |
+ PS> scoop config
+
+ last_update : 2022/11/14 22:05:50
+ scoop_repo : https://github.com/ScoopInstaller/Scoop
+ scoop_branch : develop
+ use_lessmsi : True
+ aria2-enabled : True
+ aria2-warning-enabled : False
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: PowerShell Version
+ description: Paste verbatim output from `$PSVersionTable` below.
+ render: console
+ placeholder: |
+ PS> $PSVersionTable
+
+ Name Value
+ ---- -----
+ PSVersion 7.3.0
+ PSEdition Core
+ GitCommitId 7.3.0
+ OS Microsoft Windows 10.0.25236
+ Platform Win32NT
+ PSCompatibleVersions {1.0, 2.0, 3.0, 4.0…}
+ PSRemotingProtocolVersion 2.3
+ SerializationVersion 1.1.0.1
+ WSManStackVersion 3.0
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Additional Softwares
+ description: List any additional software that you are using and may be related to this bug.
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000..2a2a0ff
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,6 @@
+# yaml-language-server: $schema=https://json.schemastore.org/github-issue-config.json
+blank_issues_enabled: true
+contact_links:
+ - name: Scoop Community Support
+ url: https://github.com/ScoopInstaller/Scoop/discussions
+ about: Please ask Scoop related questions here.
diff --git a/.github/ISSUE_TEMPLATE/hash-error.yml b/.github/ISSUE_TEMPLATE/hash-error.yml
new file mode 100644
index 0000000..0214fd8
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/hash-error.yml
@@ -0,0 +1,19 @@
+name: 🔢 Hash Error
+description: Open an issue about a package's hash is incorrect.
+labels: ["bug"]
+body:
+- type: checkboxes
+ attributes:
+ label: Prerequisites
+ options:
+ - label: I have used the predefined issue title. (e.g. "xxx@xxx&#58; hash check failed")
+ required: true
+ - label: I have verified that I am using the latest version of Scoop and corresponding bucket.
+ required: true
+- type: input
+ attributes:
+ label: Package Name and Version
+ description: Name and version of package (install name) which has incorrect hash.
+ placeholder: e.g. 7zip@21.00 (not '7-Zip')
+ validations:
+ required: true
diff --git a/.github/ISSUE_TEMPLATE/package-request.yml b/.github/ISSUE_TEMPLATE/package-request.yml
new file mode 100644
index 0000000..c86901e
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/package-request.yml
@@ -0,0 +1,52 @@
+name: 📦 Package Request
+description: Open an issue about a missing package.
+title: "[Request]: "
+labels: ["package-request"]
+body:
+- type: checkboxes
+ attributes:
+ label: Prerequisites
+ options:
+ - label: I have searched all issues/PRs to ensure it has not already been reported or fixed.
+ required: true
+- type: checkboxes
+ attributes:
+ label: Criteria
+ description: For a package to be acceptable in this bucket, it should be
+ options:
+ - label: Criteria 1
+ required: true
+ - label: Criteria 2
+ required: true
+ - label: Criteria 3
+ required: true
+- type: input
+ attributes:
+ label: Name
+ description: Name of the package
+ validations:
+ required: true
+- type: input
+ attributes:
+ label: Description
+ description: Clear and concise details of what it is
+ validations:
+ required: true
+- type: input
+ attributes:
+ label: Homepage
+ description: URI of the package's homepage
+ validations:
+ required: true
+- type: input
+ attributes:
+ label: Download Link(s)
+ description: URI(s) of the package's download(s)
+ validations:
+ required: true
+- type: textarea
+ attributes:
+ label: Some Indication of Popularity/Repute
+ description: GitHub stars/software reviews etc.
+ validations:
+ required: true