Skip to content

Commit

Permalink
Merge branch 'fix/config-props' of https://github.com/ubq-testing/com…
Browse files Browse the repository at this point in the history
…mand-start-stop into fix/config-props
  • Loading branch information
Keyrxng committed Nov 27, 2024
2 parents 8e621e5 + 888bc6b commit 7835036
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,19 @@
"properties": {
"reviewDelayTolerance": {
"default": "1 Day",
"examples": [
"1 Day",
"5 Days"
],
"description": "When considering a user for a task: if they have existing PRs with no reviews, how long should we wait before 'increasing' their assignable task limit?",
"type": "string"
},
"taskStaleTimeoutDuration": {
"default": "30 Days",
"examples": [
"1 Day",
"5 Days"
],
"description": "When displaying the '/start' response, how long should we wait before considering a task 'stale' and provide a warning?",
"type": "string"
},
Expand All @@ -60,6 +68,12 @@
"contributor": 2
},
"description": "The maximum number of tasks a user can have assigned to them at once, based on their role.",
"examples": [
{
"member": 5,
"contributor": 1
}
],
"type": "object",
"patternProperties": {
"^(.*)$": {
Expand All @@ -70,6 +84,11 @@
"assignedIssueScope": {
"default": "org",
"description": "When considering a user for a task: should we consider their assigned issues at the org, repo, or network level?",
"examples": [
"org",
"repo",
"network"
],
"anyOf": [
{
"const": "org",
Expand Down Expand Up @@ -99,6 +118,16 @@
],
"uniqueItems": true,
"description": "When considering a user for a task: which roles should be considered as having review authority? All others are ignored.",
"examples": [
[
"OWNER",
"ADMIN"
],
[
"MEMBER",
"COLLABORATOR"
]
],
"type": "array",
"items": {
"anyOf": [
Expand All @@ -124,6 +153,14 @@
"requiredLabelsToStart": {
"default": [],
"description": "If set, a task must have at least one of these labels to be started.",
"examples": [
[
"Priority: 5 (Emergency)"
],
[
"Good First Issue"
]
],
"type": "array",
"items": {
"type": "string"
Expand Down

0 comments on commit 7835036

Please sign in to comment.