We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b94ab5 commit 7ee7d4bCopy full SHA for 7ee7d4b
src/schema.js
@@ -3,6 +3,7 @@ const Joi = require('joi');
3
const fields = {
4
daysUntilLock: Joi.number()
5
.min(1)
6
+ .max(3650)
7
.description(
8
'Number of days of inactivity before a closed issue or pull request is locked'
9
),
@@ -11,7 +12,7 @@ const fields = {
11
12
.try(Joi.string(), Joi.boolean().only(false))
13
14
'Skip issues and pull requests created before a given timestamp. Timestamp ' +
- 'must follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable'
15
+ 'must follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable'
16
17
18
exemptLabels: Joi.array()
0 commit comments