From d672d76bbd48d47048712c7064ddbfa2ddafb436 Mon Sep 17 00:00:00 2001 From: STAM Date: Sun, 3 Dec 2023 20:57:03 +0300 Subject: [PATCH 1/3] bug template --- .github/ISSUE_TEMPLATE/bug.yml | 165 +++++++++++++++++++++++++++++++++ 1 file changed, 165 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 0000000..ee4cf50 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,165 @@ +name: Bug Report +description: A generic bug report +title: "[BUG]: " +labels: ["Type: Bug", "Status: Available"] +#projects: ["octo-org/1", "octo-org/44"] +assignees: + - s1lentq +# - theAsmodai +# - stamepicmorg +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: contact + attributes: + label: Contact Details (optional) + 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: mmrversion + attributes: + label: Metamod-r Version + description: What version of Metamod-r are you running? + options: + - 1.3.0.138 (Default) + - 1.3.0.131 + - 1.3.0.128 + - 1.3.0.126 + - 1.3.0.125 + - 1.3.0.119 + - 1.3.0.107 + - 1.3.0.86 + - 1.3.0.85 + - 1.3.0.84 + default: 0 + validations: + required: true + - type: dropdown + id: amxxversion + attributes: + label: AMX Mod X Version + description: What version of AMX Mod X are you running? + options: + - 1.8.2 (Default) + - 1.9.x + - 1.10.x + - I am not use AMX Mod X + default: 0 + validations: + required: true + - type: dropdown + id: engine + attributes: + label: What engine are you seeing the problem on? + multiple: true + options: + - HLDS + - reHLDS + validations: + required: true + - type: dropdown + id: enginever + attributes: + label: What version of engine are you seeing the problem on? + multiple: true + options: + - HLDS (5758) #Windows + - HLDS (5787) #Linux + - HLDS (6132) #Both + - HLDS (6153) #Both + - HLDS (6153b) #Both + - HLDS (7561) #Windows + - HLDS (7559) #Linux + - HLDS (7882) #Linux + - HLDS (8308) #Both + - HLDS (8196) #Linux + - HLDS (8684) #Both + - reHLDS (Nightly CI build) + - reHLDS (3.13.0.788) + - reHLDS (3.12.0.780) + - reHLDS (3.11.0.779) + - reHLDS (3.11.0.777) + - reHLDS (3.11.0.776) + - reHLDS (3.11.0.767) + - reHLDS (3.10.0.761) + - reHLDS (3.10.0.760) + - reHLDS (3.10.0.760-dev) + - reHLDS (3.10.0.759) + - reHLDS (3.9.0.752) + - reHLDS (3.8.0.739) + - reHLDS (3.8.0.723) + - reHLDS (3.8.0.715) + - reHLDS (3.8.0.711) + - reHLDS (3.8.0.702) + - reHLDS (3.7.0.698) + - reHLDS (3.7.0.697) + - reHLDS (3.7.0.696) + - reHLDS (3.7.0.695) + - reHLDS (3.7.0.694) + validations: + required: true + - type: dropdown + id: os + attributes: + label: What OS are you seeing the problem on? + multiple: true + options: + - Windows + - Linux + validations: + required: true + - type: dropdown + id: osver + attributes: + label: What OS version are you seeing the problem on? + multiple: true + options: + - Windows 7 + - Windows 8 + - Windows 8.1 + - Windows 10 + - Windows 11 + - Ubuntu 14.x + - Ubuntu 16.x + - Ubuntu 18.x + - Ubuntu 20.x + - Ubuntu 22.x + - Debian 10 + - Debian 11 + - Debian 12 + - Other Linux + validations: + required: true + - 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 + validations: + required: true +# - 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 +- type: markdown + attributes: + value: "Thanks for completing our form!" \ No newline at end of file From 6d3a663c33d9e715e8aa8ce599ffb9a14cbe8dee Mon Sep 17 00:00:00 2001 From: STAM Date: Sun, 3 Dec 2023 21:01:01 +0300 Subject: [PATCH 2/3] updated "paths-ignore" in build rules for ".github" folder dont trigger and publish build when changes only in ".github" folder --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 63facda..0bb5833 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,6 +5,7 @@ on: branches: [master] paths-ignore: - '**.md' + - '.github/**' pull_request: types: [opened, reopened, synchronize] From a05af41a82e240401034fb58d43a36e105bb327a Mon Sep 17 00:00:00 2001 From: STAM Date: Sun, 3 Dec 2023 21:08:12 +0300 Subject: [PATCH 3/3] added "task" and "feature" issue templates --- .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/task_generic.md | 17 +++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/task_generic.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..cdcdcb5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '[Feature request]: ' +labels: 'Engine: Independent, Priority: Medium, OS: Independent, Status: Available, Type: Rrequest' +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. diff --git a/.github/ISSUE_TEMPLATE/task_generic.md b/.github/ISSUE_TEMPLATE/task_generic.md new file mode 100644 index 0000000..de789ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/task_generic.md @@ -0,0 +1,17 @@ +--- +name: Generic task +about: Create a generic task +title: '[TASK]: ' +labels: 'Engine: Independent, Priority: Medium, OS: Independent, Status: Available, Type: Task' +assignees: '' + +--- + +**Describe** +A clear and concise description of what the issue is. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here.