Skip to content

Commit

Permalink
chore: updated manifest.json and dist build
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 4, 2025
1 parent df63472 commit 3d1db38
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 37 deletions.
6 changes: 3 additions & 3 deletions dist/index.js

Large diffs are not rendered by default.

47 changes: 13 additions & 34 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,23 @@
"type": "boolean"
},
"maxConcurrentTasks": {
"default": {
"member": 10,
"contributor": 2
},
"description": "The maximum number of tasks a user can have assigned to them at once, based on their role.",
"examples": [
{
"member": 5,
"collaborator": 5,
"contributor": 1
}
],
"default": {},
"type": "object",
"patternProperties": {
"^(.*)$": {
"type": "integer"
"properties": {
"collaborator": {
"default": 10,
"type": "number"
},
"contributor": {
"default": 5,
"type": "number"
}
}
},
Expand Down Expand Up @@ -135,44 +137,21 @@
"description": "The name of the required labels to start the task.",
"type": "string"
},
"roles": {
"allowedRoles": {
"description": "The list of allowed roles to start the task with the given label.",
"uniqueItems": true,
"default": ["admin", "member", "collaborator", "contributor", "owner", "billing_manager", "write", "read"],
"default": ["collaborator", "contributor"],
"examples": [["collaborator", "contributor"]],
"type": "array",
"items": {
"anyOf": [
{
"const": "admin",
"type": "string"
},
{
"const": "member",
"type": "string"
},
{
"const": "collaborator",
"type": "string"
},
{
"const": "contributor",
"type": "string"
},
{
"const": "owner",
"type": "string"
},
{
"const": "billing_manager",
"type": "string"
},
{
"const": "read",
"type": "string"
},
{
"const": "write",
"type": "string"
}
]
}
Expand Down

0 comments on commit 3d1db38

Please sign in to comment.