master
  1name: 🐛 Bug Report
  2description: Open an issue about a bug that needs fixing.
  3title: "[Bug]: "
  4labels: ["bug"]
  5body:
  6- type: checkboxes
  7  attributes:
  8    label: Prerequisites
  9    options:
 10    - label: I have written a descriptive issue title.
 11      required: true
 12    - label: I have searched all issues/PRs to ensure it has not already been reported or fixed.
 13      required: true
 14    - label: I have verified that I am using the latest version of Scoop and corresponding bucket.
 15      required: true
 16- type: input
 17  attributes:
 18    label: Package Name
 19    description: Name of package (install name) which has bug(s)
 20    placeholder: e.g. 7zip (not '7-Zip')
 21  validations:
 22    required: true
 23- type: textarea
 24  attributes:
 25    label: Expected/Current Behaviour
 26    description: A clear and concise description of what you expected to happen and what actually happen.
 27    placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
 28  validations:
 29    required: true
 30- type: textarea
 31  attributes:
 32    label: Steps to Reproduce
 33    description: List of steps, sample code or failing test that reproduces the behavior.
 34    render: console
 35    placeholder: |
 36      PS> scoop install tests/meson
 37      Installing 'meson' (0.61.1) [64bit]
 38      Loading meson-0.61.1-64.msi from cache.
 39      Checking hash of meson-0.61.1-64.msi ... ok.
 40      Extracting meson-0.61.1-64.msi ... done.
 41      Running installer script...
 42      Linking D:\Scoop\apps\meson\current => D:\Scoop\apps\meson\0.61.1
 43      Creating shim for 'meson'.
 44      Can't shim 'meson.exe': File doesn't exist.
 45  validations:
 46    required: true
 47- type: textarea
 48  attributes:
 49    label: Possible Solution
 50    description: Do you have some suggestions on a fix for the bug?
 51    placeholder: I am experiencing a problem with X. I think Y should be happening but Z is actually happening.
 52  validations:
 53    required: true
 54- type: textarea
 55  attributes:
 56    label: Scoop and Buckets Version
 57    description: Paste verbatim output from `scoop --version` below.
 58    render: console
 59    placeholder: |
 60      PS> scoop --version
 61      Current Scoop version:
 62      c60df9cd (HEAD -> develop, origin/develop) docs(changelog): Prepare for version 0.3.1 (#5248)
 63
 64      'extras' bucket:
 65      ea314b213 (HEAD -> master, origin/master, origin/HEAD) lazygit: Update to version 0.36.0
 66
 67      'main' bucket:
 68      c6e688d4d (HEAD -> master, origin/master, origin/HEAD) x265: Update to version 3.5+68-40e37bc
 69  validations:
 70    required: true
 71- type: textarea
 72  attributes:
 73    label: Scoop Config
 74    description: Paste verbatim output from `scoop config` below.
 75    render: console
 76    placeholder: |
 77      PS> scoop config
 78
 79      last_update            : 2022/11/14 22:05:50
 80      scoop_repo             : https://github.com/ScoopInstaller/Scoop
 81      scoop_branch           : develop
 82      use_lessmsi            : True
 83      aria2-enabled          : True
 84      aria2-warning-enabled  : False
 85  validations:
 86    required: true
 87- type: textarea
 88  attributes:
 89    label: PowerShell Version
 90    description: Paste verbatim output from `$PSVersionTable` below.
 91    render: console
 92    placeholder: |
 93      PS> $PSVersionTable
 94
 95      Name                           Value
 96      ----                           -----
 97      PSVersion                      7.3.0
 98      PSEdition                      Core
 99      GitCommitId                    7.3.0
100      OS                             Microsoft Windows 10.0.25236
101      Platform                       Win32NT
102      PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0…}
103      PSRemotingProtocolVersion      2.3
104      SerializationVersion           1.1.0.1
105      WSManStackVersion              3.0
106  validations:
107    required: true
108- type: textarea
109  attributes:
110    label: Additional Softwares
111    description: List any additional software that you are using and may be related to this bug.
112  validations:
113    required: false