From 7e0128ea3ef86a6e2dfd3f65436f16e1fd3c7736 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Sun, 30 Jul 2023 10:04:38 +0200 Subject: [PATCH] Added gitlab templates --- .gitignore | 3 +++ .gitlab/issue_templates/bug_report.md | 25 +++++++++++++++++++++ .gitlab/issue_templates/change_request.md | 14 ++++++++++++ .gitlab/issue_templates/feature_request.md | 13 +++++++++++ .gitlab/issue_templates/question.md | 1 + dbrepo-semantics-service/ready | 0 dbrepo-semantics-service/rest-service/ready | 0 7 files changed, 56 insertions(+) create mode 100644 .gitlab/issue_templates/bug_report.md create mode 100644 .gitlab/issue_templates/change_request.md create mode 100644 .gitlab/issue_templates/feature_request.md create mode 100644 .gitlab/issue_templates/question.md delete mode 100644 dbrepo-semantics-service/ready delete mode 100644 dbrepo-semantics-service/rest-service/ready diff --git a/.gitignore b/.gitignore index db94d9e162..45e9e33c63 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,9 @@ fda-ui/ # demo .demo +# Generated +ready + # crt *.crt *.key diff --git a/.gitlab/issue_templates/bug_report.md b/.gitlab/issue_templates/bug_report.md new file mode 100644 index 0000000000..350e523b4c --- /dev/null +++ b/.gitlab/issue_templates/bug_report.md @@ -0,0 +1,25 @@ +**Describe the bug** +A clear and concise description of what the bug is. + +**Is this a regression?** +Yes/No. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment** + - Browser [e.g. firefox, chrome] + - Damap version [e.g. 2.1.0] + +**Additional context** +Add any other context about the problem here. diff --git a/.gitlab/issue_templates/change_request.md b/.gitlab/issue_templates/change_request.md new file mode 100644 index 0000000000..96b3e816fe --- /dev/null +++ b/.gitlab/issue_templates/change_request.md @@ -0,0 +1,14 @@ +**Changes** +Add a description of the task and describe what the task should include. + +**Additional notes** +List any notes you collected that support the original task and include a screenshot if applicable. + +**Assumptions** +List any assumptions that you are aware of but still need to be reviewed. + +**Acceptance Criteria** +Describe how you think a completed task would look like or how it should work. + +**Risks? (optional)** +Potential risks and how to best mitigate them. diff --git a/.gitlab/issue_templates/feature_request.md b/.gitlab/issue_templates/feature_request.md new file mode 100644 index 0000000000..846c561d9d --- /dev/null +++ b/.gitlab/issue_templates/feature_request.md @@ -0,0 +1,13 @@ +**Description** +A clear and concise description of what you're missing. + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. + +_If this issue requests multiple changes consider using checkboxes or lists._ diff --git a/.gitlab/issue_templates/question.md b/.gitlab/issue_templates/question.md new file mode 100644 index 0000000000..eeecf4b6e8 --- /dev/null +++ b/.gitlab/issue_templates/question.md @@ -0,0 +1 @@ +**Description** diff --git a/dbrepo-semantics-service/ready b/dbrepo-semantics-service/ready deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/dbrepo-semantics-service/rest-service/ready b/dbrepo-semantics-service/rest-service/ready deleted file mode 100644 index e69de29bb2..0000000000 -- GitLab