Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
informational: true
patch:
default:
informational: true

parsers:
gcov:
Expand Down
4 changes: 4 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -29,3 +32,4 @@ Which browser are you using?
**Versions**
Nextcloud server version: ??
Cookbook version: ??
Database system: MySQL/MariaDB/PostgreSQL/Sqlite
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}