From 3bc35f6250d15b32b02f2f2858b2f76b033e1581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Fri, 18 Jan 2019 16:43:28 +0100 Subject: [PATCH] Add issue templates and stale bot config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- .github/ISSUE_TEMPLATE/Bug_report.md | 63 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/Feature_request.md | 17 ++++++ .github/pull_request_template.md | 16 ++++++ .github/stale.yml | 14 +++++ 4 files changed, 110 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/Bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/Feature_request.md create mode 100644 .github/pull_request_template.md create mode 100644 .github/stale.yml diff --git a/.github/ISSUE_TEMPLATE/Bug_report.md b/.github/ISSUE_TEMPLATE/Bug_report.md new file mode 100644 index 000000000..f978591f7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_report.md @@ -0,0 +1,63 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**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. + +**Client details:** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + - Device: [e.g. iPhone6, desktop] + +## Server details + +**Operating system**: + +**Web server:** + +**Database:** + +**PHP version:** + +**Nextcloud version:** + +**Version of the richdocuments app** + +**Version of Collabora online** + + +
+Logs + +#### Nextcloud log (data/nextcloud.log) +``` +Insert your Nextcloud log here +``` + +#### Browser log +``` +Insert your browser log here, this could for example include: + +a) The javascript console log +b) The network log +c) ... +``` + +
diff --git a/.github/ISSUE_TEMPLATE/Feature_request.md b/.github/ISSUE_TEMPLATE/Feature_request.md new file mode 100644 index 000000000..538429512 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**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. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..8ae9fef9c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,16 @@ + +* Resolves: # +* Target version: master + +### Summary + + +### TODO + +- [ ] ... + +### Checklist + +- [ ] Code is properly formatted +- [ ] Sign-off message is added to all commits +- [ ] Documentation (manuals or wiki) has been updated or is not required diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 000000000..4b11f231b --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,14 @@ +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 30 +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 +# Issues with these labels will never be considered stale +exemptLabels: + - enhancement +# Label to use when marking an issue as stale +staleLabel: wontfix +# Comment to post when marking an issue as stale. Set to `false` to disable +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs. Thank you + for your contributions.