From 9d6e4a04ede25e8212ae86e5fdc307aac49d816b7c70d99b59c8207ee1f6b93d Mon Sep 17 00:00:00 2001 From: Daniel Garcia Moreno Date: Thu, 6 Nov 2025 11:25:11 +0100 Subject: [PATCH] gitea: Add issue templates for adding/removing pkgs --- .gitea/issue_template/add_package.md | 19 +++++++++++++++++++ .gitea/issue_template/rm_package.md | 16 ++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .gitea/issue_template/add_package.md create mode 100644 .gitea/issue_template/rm_package.md diff --git a/.gitea/issue_template/add_package.md b/.gitea/issue_template/add_package.md new file mode 100644 index 0000000..4c4097f --- /dev/null +++ b/.gitea/issue_template/add_package.md @@ -0,0 +1,19 @@ +--- + +name: "Add a package to python-pytest" +about: "If you want to add a new package to python-pytest devel project" +title: "[ADD] " +ref: "main" +assignees: [] +labels: + +- new_package + +--- + +This is where you add a new package to python-pytest devel project. Please replace and specify on one line. You can include any relevant Bugzilla links too. + +org/package#commit_hash + +Where the `commit_hash` could be a branch. + diff --git a/.gitea/issue_template/rm_package.md b/.gitea/issue_template/rm_package.md new file mode 100644 index 0000000..dad1f07 --- /dev/null +++ b/.gitea/issue_template/rm_package.md @@ -0,0 +1,16 @@ +--- + +name: "Remove package from python-pytest" +about: "If you want to remove a package from python-pytest" +title: "[RM] " +ref: "main" +assignees: [] +labels: + +- rm_package + +--- + +This is where you rm a package from python-pytest devel project. Please specify package in title and target the correct branch of the project. + + -- 2.51.1