summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2021-05-12 15:13:22 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2021-05-12 15:13:43 +0200
commitfad9b262fd1bda4729a4200bed603fab86176eec (patch)
tree200d82c96d1a990112a8e155ae635082e6d3a93b
parentdf023fadebc227030c61be73eda943d4bf013236 (diff)
move maintenance
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
-rw-r--r--docs/maintenance.md24
-rw-r--r--old-docs/README.md13
-rw-r--r--old-docs/maintenance.md25
3 files changed, 24 insertions, 38 deletions
diff --git a/docs/maintenance.md b/docs/maintenance.md
new file mode 100644
index 000000000..9e748410c
--- /dev/null
+++ b/docs/maintenance.md
@@ -0,0 +1,24 @@
+# Maintenance
+
+## Release
+Releases are created automatically by GitHub Actions. A release is triggered via a GitHub Release.
+The GitHub Action will then start a build based on the git tag. A release can only be approved by @Grotax or @SMillerDev. An Admin of the Nextcloud organization can always overwrite these settings. The private key is stored as environmental secret in GitHub. The owner of the private key is @Grotax.
+
+## 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 feature.
+
+- 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_
diff --git a/old-docs/README.md b/old-docs/README.md
deleted file mode 100644
index 62c2dac07..000000000
--- a/old-docs/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Documentation
-
-
-As a developer you can interact with the News app in the following ways:
-
-* [Use the API for syncing and updating feeds](externalapi/)
-* [Write plugins](plugins/)
-* [Add custom CSS for feeds](feedcss/)
-* [Customize the explore section](explore/)
-
-
-The News app uses [FeedIO](https://github.com/alexdebril/feed-io) for parsing feeds and full text feeds. FeedIO is a fantastic library so if you contribute or fix bugs, please consider **contributing your changes** back to the library to help others :)
-
diff --git a/old-docs/maintenance.md b/old-docs/maintenance.md
deleted file mode 100644
index b99fcfc3c..000000000
--- a/old-docs/maintenance.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# Maintenance documentation
-
-## Release
-Releases should be done by checking `make test`, cleaning using `make distclean` 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 feature.
-
-- 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_