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 Nov 27, 2024
1 parent 7835036 commit d1c5ddf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 44 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

52 changes: 9 additions & 43 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
{
"name": "Start | Stop",
"description": "Assign or un-assign yourself from an issue/task.",
"ubiquity:listeners": [
"issue_comment.created",
"issues.assigned",
"issues.unassigned",
"pull_request.opened",
"pull_request.edited"
],
"ubiquity:listeners": ["issue_comment.created", "issues.assigned", "issues.unassigned", "pull_request.opened", "pull_request.edited"],
"commands": {
"start": {
"ubiquity:example": "/start",
Expand Down Expand Up @@ -41,19 +35,13 @@
"properties": {
"reviewDelayTolerance": {
"default": "1 Day",
"examples": [
"1 Day",
"5 Days"
],
"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"
],
"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 Down Expand Up @@ -84,11 +72,7 @@
"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"
],
"examples": ["org", "repo", "network"],
"anyOf": [
{
"const": "org",
Expand All @@ -110,23 +94,12 @@
"type": "string"
},
"rolesWithReviewAuthority": {
"default": [
"OWNER",
"ADMIN",
"MEMBER",
"COLLABORATOR"
],
"default": ["OWNER", "ADMIN", "MEMBER", "COLLABORATOR"],
"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"
]
["OWNER", "ADMIN"],
["MEMBER", "COLLABORATOR"]
],
"type": "array",
"items": {
Expand All @@ -153,19 +126,12 @@
"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"
]
],
"examples": [["Priority: 5 (Emergency)"], ["Good First Issue"]],
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}

0 comments on commit d1c5ddf

Please sign in to comment.