Skip to content

Commit

Permalink
chore: updated README.md and plugin inputs description
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Dec 3, 2024
1 parent 1910139 commit 5d17991
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ bun test
disqualification: "7 days"
warning: "3.5 days"
prioritySpeed: true
pullRequestRequired: true
watch:
optOut:
- "repoName"
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Daemon Disqualifier",
"description": "Watches user activity on issues, sends reminders on disqualification threshold, and unassign inactive users.",
"ubiquity:listeners": ["pull_request_review_comment.created", "issue_comment.created", "push"],
"ubiquity:listeners": ["pull_request_review_comment.created", "issue_comment.created", "push", "issues.assigned"],
"configuration": {
"default": {},
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion src/types/plugin-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const pluginSettingsSchema = T.Object(
/**
* Whether a pull request is required for the given issue on disqualify.
*/
pullRequestRequired: T.Boolean({ default: true }),
pullRequestRequired: T.Boolean({ default: true, examples: ["true", "false"] }),
/**
* List of events to consider as valid activity on a task
*/
Expand Down

0 comments on commit 5d17991

Please sign in to comment.