diff --git a/.codecov.yml b/.codecov.yml index ae0f96385..523f03883 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -5,6 +5,13 @@ coverage: precision: 2 round: down range: "70...100" + status: + project: + default: + informational: true + patch: + default: + informational: true parsers: gcov: diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 66798a9eb..80589f05a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -20,6 +20,9 @@ Steps to reproduce the behavior: **Expected behavior** A clear and concise description of what you expected to happen. +**Actual behavior** +Please describe in clear statements what is happening in reality. + **Screenshots** If applicable, add screenshots to help explain your problem. @@ -29,3 +32,4 @@ Which browser are you using? **Versions** Nextcloud server version: ?? Cookbook version: ?? +Database system: MySQL/MariaDB/PostgreSQL/Sqlite diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cf41a146..e318941b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ [#693](https://github.com/nextcloud/cookbook/pull/693) @christianlupus - Add indices to database for all tables [#698](https://github.com/nextcloud/cookbook/pull/698) @christianlupus +- Codebase maintenance + [#699](https://github.com/nextcloud/cookbook/pull/699) @christianlupus ## 0.8.4 - 2021-03-08 diff --git a/composer.json b/composer.json index 4ebb0a6e5..23a363587 100644 --- a/composer.json +++ b/composer.json @@ -19,6 +19,6 @@ "scripts": { "cs:check": "./vendor/bin/php-cs-fixer fix --dry-run --diff", "cs:fix": "./vendor/bin/php-cs-fixer fix", - "lint:lint": "find . -name '*.php' -not -path './vendor/*' -not -path './.github/*' -print0 | xargs -0 -n1 php -l" + "lint:lint": "find . -name '*.php' -not -path './vendor/*' -not -path './.github/*' -not -path './node_modules/*' -print0 | xargs -0 -n1 php -l" } }