From 127477be75c094850ca80f7f7295c821b7ba4e97 Mon Sep 17 00:00:00 2001 From: Bibin Muttappillil Date: Fri, 21 Jul 2023 21:26:23 +0200 Subject: [PATCH] Add initial task proposal issue template Mostly from - https://git.soi.ch/jan/proposal-experiment/src/branch/master/.gitea/issue_template/task-proposal.yaml - https://git.soi.ch/SOI/experimental-projects/commit/155060ebb6e34e668b9e750a6317dd5b98260c2d --- .gitea/.gitea/issue_template/proposal.md | 44 ++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .gitea/.gitea/issue_template/proposal.md diff --git a/.gitea/.gitea/issue_template/proposal.md b/.gitea/.gitea/issue_template/proposal.md new file mode 100644 index 0000000..a2eb54f --- /dev/null +++ b/.gitea/.gitea/issue_template/proposal.md @@ -0,0 +1,44 @@ +name: Task Proposal +about: Propose an idea for a task to be used in contests at SOI. +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to propose a task! + Do not forget to **update the issue title** with your unique task name. + - type: input + id: author + attributes: + label: Author + description: Who had the idea for this task? If applicable, also link original source. + placeholder: stofl, inspired by https://codeforces.com/problemset/problem/1/A + validations: + required: true + - type: markdown + attributes: + value: Choose Topics label on the right + - type: markdown + attributes: + value: Choose round label on the right + - type: markdown + attributes: + value: Choose difficulty label on the right + - type: textarea + id: task + attributes: + label: Task description + description: Formal problem statement. Optional: Add your story idea. + validations: + required: true + - type: textarea + id: subtasks + attributes: + label: Subtasks + description: Possible subtasks or variations of the task. + - type: textarea + id: solution + attributes: + label: Solution + description: Solution idea or possible approaches. You don't need to have a full solution to propose a task, but please write down a few thoughts about how you would approach the task. + validations: + required: true