summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-14 10:40:39 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2019-03-22 17:01:33 +0100
commit214a9d4f124142d0c900061b8d3c4e40be121457 (patch)
tree950e82ade94ba12a64683d72f144c19a957e70e2 /docs
parenta6a35d5e841e78ed481b1bd81645aced8adf8dc9 (diff)
Write down some notes about maintenance
Diffstat (limited to 'docs')
-rw-r--r--docs/maintenance.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/maintenance.md b/docs/maintenance.md
new file mode 100644
index 000000000..21cc5e670
--- /dev/null
+++ b/docs/maintenance.md
@@ -0,0 +1,25 @@
+# Maintenance documentation
+
+## Release
+Releases should be done by checking `make test`, cleaning using `make disclean` and consequently running `make dist`.
+This will create an app store ready package to be uploaded.
+This process should be done by someone who has the private keys and the access to sign and upload such a package.
+
+## Support
+### PHP
+While the app should try to support all PHP versions that nextcloud currently supports,
+the real focus when deciding to cut a PHP version should be on maintenance burden.
+Users are nice but devs should be a priority in decisions that are likely to impact them significantly.
+
+### Issues
+- Bug reports without test cases (feed url and action is enough) can be closed with or without comment.
+
+- Feature requests without thoughtful commentary or pull request can be closed with or without comment,
+unless a developer is interested to support such a future.
+
+- Issues without activity in the last 30 days can be closed with or without comment.
+If this is a bug you care about that isn't getting attention, fix it.
+If you're good enough to understand the bug, you're good enough to fix it.
+
+
+_Largely inspired by https://gist.github.com/ryanflorence/124070e7c4b3839d4573_