From 731d9aaf4a19167f03d7f5b6b3fdce839d915ac1 Mon Sep 17 00:00:00 2001 From: SniFo <72699591+MrSniFo@users.noreply.github.com> Date: Sat, 16 Sep 2023 12:06:20 +0100 Subject: [PATCH] pull request template --- .github/PULL_REQUEST_TEMPLATE.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.yml b/.github/PULL_REQUEST_TEMPLATE.yml new file mode 100644 index 0000000..36f9fa2 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.yml @@ -0,0 +1,24 @@ +name: "Pull Request" +description: Create a new pull request. +title: "[PR] - " +labels: [] +body: + - type: textarea + id: description + attributes: + label: "Description" + description: Please provide a brief description of the changes in this pull request. + placeholder: Short and explicit description of your changes... + validations: + required: true + - type: textarea + id: python-code + attributes: + label: "Python Code Example" + description: Include a Python code example to illustrate your changes (optional). + placeholder: | + ```python + # Your Python code example here + ``` + validations: + required: false