From 70efbe94b40d6d1a6d9be3eb5b046b1ae32a0b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20H=C3=B6ffner?= Date: Wed, 9 Oct 2024 14:46:52 +0200 Subject: [PATCH] add delete class and delete triple issue templates, part of https://github.com/snikproject/graph/issues/430 --- .github/ISSUE_TEMPLATE/deleteclass.yml | 16 +++++++++++++++ .github/ISSUE_TEMPLATE/deleteedge.yml | 28 ++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/deleteclass.yml create mode 100644 .github/ISSUE_TEMPLATE/deleteedge.yml diff --git a/.github/ISSUE_TEMPLATE/deleteclass.yml b/.github/ISSUE_TEMPLATE/deleteclass.yml new file mode 100644 index 0000000..11b066c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/deleteclass.yml @@ -0,0 +1,16 @@ +name: Delete Class +description: Permanently delete a class +labels: ["deleteclass"] +assignees: + - KonradHoeffner +body: + - type: input + id: class + attributes: + label: Class + validations: + required: true + - type: textarea + id: sparql + attributes: + label: SPARQL query diff --git a/.github/ISSUE_TEMPLATE/deleteedge.yml b/.github/ISSUE_TEMPLATE/deleteedge.yml new file mode 100644 index 0000000..32a2350 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/deleteedge.yml @@ -0,0 +1,28 @@ +name: Delete Triple +description: Permanently delete a triple (edge) +labels: ["deletetriple"] +assignees: + - KonradHoeffner +body: + - type: input + id: subject + attributes: + label: Subject Class + validations: + required: true + - type: input + id: predicate + attributes: + label: Predicate + validations: + required: true + - type: input + id: object + attributes: + label: Object Class + validations: + required: true + - type: textarea + id: sparql + attributes: + label: SPARQL query