Fix punycode and url.parse Deprecation Warnings (#1312)

* chore: update dependencies and add new license files for octokit packages

* chore: update license files and remove obsolete dependencies
This commit is contained in:
Chiranjib Swain
2026-02-02 22:54:18 +05:30
committed by GitHub
parent d6f8a33132
commit dcd2b9469d
94 changed files with 51337 additions and 55310 deletions

View File

@@ -965,7 +965,12 @@ export class IssuesProcessor {
repo: context.repo.repo,
issue_number: issue.number,
state: 'closed',
state_reason: this.options.closeIssueReason || undefined
state_reason: (this.options.closeIssueReason || undefined) as
| 'completed'
| 'reopened'
| 'not_planned'
| null
| undefined
});
}
} catch (error) {