From 03cda4e4e2c8a435b3f27aba42f6a3099faa86b1 Mon Sep 17 00:00:00 2001 From: anysad Date: Sat, 13 Sep 2025 18:02:15 +0300 Subject: [PATCH 1/2] [ENHANCEMENT]: Add Pull Request Templates --- .github/PULL_REQUEST_TEMPLATE/addition.yml | 19 +++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE/enhancement.yml | 19 +++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE/fix.yml | 19 +++++++++++++++++++ 3 files changed, 57 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/addition.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE/enhancement.yml create mode 100644 .github/PULL_REQUEST_TEMPLATE/fix.yml diff --git a/.github/PULL_REQUEST_TEMPLATE/addition.yml b/.github/PULL_REQUEST_TEMPLATE/addition.yml new file mode 100644 index 00000000..7ab6d291 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/addition.yml @@ -0,0 +1,19 @@ +name: Addition Pull Request +description: Suggest a new article. +title: "[ADDITION] " +body: + - type: markdown + attributes: + value: "# PLEASE READ THE [ARTICLE STANDARTS](https://github.com/FunkinCrew/code-cookbook/blob/master/authoring.md) BEFORE OPENING PULL REQUESTS!" + + - type: textarea + attributes: + label: What does this pull request add? + placeholder: Describe your additions here... + validations: + required: true + + - type: textarea + attributes: + label: Screenshots/Videos + placeholder: Demonstrate your additions here... \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE/enhancement.yml b/.github/PULL_REQUEST_TEMPLATE/enhancement.yml new file mode 100644 index 00000000..024e8615 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/enhancement.yml @@ -0,0 +1,19 @@ +name: Enhancement Pull Request +description: Add improvements/new information to an existing article. +title: "[ENHANCEMENT] " +body: + - type: markdown + attributes: + value: "# PLEASE READ THE [ARTICLE STANDARTS](https://github.com/FunkinCrew/code-cookbook/blob/master/authoring.md) BEFORE OPENING PULL REQUESTS!" + + - type: textarea + attributes: + label: What does this pull request enhance? + placeholder: Describe your enhancements here... + validations: + required: true + + - type: textarea + attributes: + label: Screenshots/Videos + placeholder: Demonstrate your enhancements here... \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE/fix.yml b/.github/PULL_REQUEST_TEMPLATE/fix.yml new file mode 100644 index 00000000..d5817359 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/fix.yml @@ -0,0 +1,19 @@ +name: Fix Pull Request +description: Correct typos/formatting issues/inaccurate information that may be present in the articles. +title: "[FIX] " +body: + - type: markdown + attributes: + value: "# PLEASE READ THE [ARTICLE STANDARTS](https://github.com/FunkinCrew/code-cookbook/blob/master/authoring.md) BEFORE OPENING PULL REQUESTS!" + + - type: textarea + attributes: + label: What does this pull request fix? + placeholder: Describe your fixes here... + validations: + required: true + + - type: textarea + attributes: + label: Screenshots/Videos + placeholder: Demonstrate your fixes here... \ No newline at end of file From 69fb8899c1aef48b48447bb8438ad7392223487a Mon Sep 17 00:00:00 2001 From: anysad Date: Sat, 13 Sep 2025 18:02:59 +0300 Subject: [PATCH 2/2] change wording enhance -> add --- .github/PULL_REQUEST_TEMPLATE/enhancement.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/enhancement.yml b/.github/PULL_REQUEST_TEMPLATE/enhancement.yml index 024e8615..cebe89c9 100644 --- a/.github/PULL_REQUEST_TEMPLATE/enhancement.yml +++ b/.github/PULL_REQUEST_TEMPLATE/enhancement.yml @@ -8,7 +8,7 @@ body: - type: textarea attributes: - label: What does this pull request enhance? + label: What does this pull request add? placeholder: Describe your enhancements here... validations: required: true