diff --git a/README.md b/README.md index acf419b83..a3bd9ec99 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Every argument is optional. | [close-pr-message](#close-pr-message) | Comment on the staled PRs while closed | | | [stale-issue-label](#stale-issue-label) | Label to apply on staled issues | `Stale` | | [close-issue-label](#close-issue-label) | Label to apply on closed issues | | -| [close-issue-reason](#close-issue-reason) | Reason to use when closing issues | | +| [close-issue-reason](#close-issue-reason) | Reason to use when closing issues | `not_planned` | | [stale-pr-label](#stale-pr-label) | Label to apply on staled PRs | `Stale` | | [close-pr-label](#close-pr-label) | Label to apply on closed PRs | | | [exempt-issue-labels](#exempt-issue-labels) | Labels on issues exempted from stale | | @@ -226,7 +226,7 @@ Required Permission: `issues: write` Specify the [reason](https://github.blog/changelog/2022-05-19-the-new-github-issues-may-19th-update/) used when closing issues. Valid values are `completed` and `not_planned`. -Default value: unset +Default value: `not_planned` #### stale-pr-label diff --git a/__tests__/constants/default-processor-options.ts b/__tests__/constants/default-processor-options.ts index 3d010420d..4ef2359dd 100644 --- a/__tests__/constants/default-processor-options.ts +++ b/__tests__/constants/default-processor-options.ts @@ -53,6 +53,6 @@ export const DefaultProcessorOptions: IIssuesProcessorOptions = Object.freeze({ ignoreIssueUpdates: undefined, ignorePrUpdates: undefined, exemptDraftPr: false, - closeIssueReason: '', + closeIssueReason: 'not_planned', includeOnlyAssigned: false }); diff --git a/action.yml b/action.yml index ded635269..ea63e364a 100644 --- a/action.yml +++ b/action.yml @@ -51,7 +51,7 @@ inputs: required: false close-issue-reason: description: 'The reason to use when closing an issue.' - default: '' + default: 'not_planned' required: false stale-pr-label: description: 'The label to apply when a pull request is stale.'