
* docs(only-labels): enhance the docs and fix duplicate (#341) * docs(only-labels): remove duplicated option and improve descriptions a bad rebase happend * docs(readme): use a multi-line array and remove the optional column the option column was not helpful since each value is optional the multi-line array will allow to have a better UI in small devices and basically in GitHub too due to the max-width * style(readme): break line for the statistics * docs(readme): add a better description for the ascending option * docs(action): add missing punctuation * build(deps-dev): bump @typescript-eslint/eslint-plugin (#342) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.15.2 to 4.16.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.16.1/packages/eslint-plugin) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps): bump @octokit/rest from 18.3.0 to 18.3.2 (#350) Bumps [@octokit/rest](https://github.com/octokit/rest.js) from 18.3.0 to 18.3.2. - [Release notes](https://github.com/octokit/rest.js/releases) - [Commits](https://github.com/octokit/rest.js/compare/v18.3.0...v18.3.2) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * test: add more coverage for the stale label behaviour (#352) (#15) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(logs): add logs for the milestones * chore(errors): use actions error instead of throw errors * chore(logs): enhance the logs and add some colors tl;dr: blue for values, megenta for options, white for messages, yellow light for warnings, yellow for milestones and green for success still a WIP but I wish to confirm this before continuing @hross is it ok for you? * chore(index): update the index * chore(ci): use npm ci instead of npm i * chore(logs): removed some useless logs * refactor(issues): remove useless check * chore(statistics): show the real count of fetched issues * refactor(operations): use a class to handle the operations left closes #361 * chore(logs): include the total number of issues in the log for a batch Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
117 lines
4.4 KiB
TypeScript
117 lines
4.4 KiB
TypeScript
import * as core from '@actions/core';
|
|
import {isValidDate} from './functions/dates/is-valid-date';
|
|
import {IssuesProcessor} from './classes/issues-processor';
|
|
import {IIssuesProcessorOptions} from './interfaces/issues-processor-options';
|
|
|
|
async function _run(): Promise<void> {
|
|
try {
|
|
const args = _getAndValidateArgs();
|
|
|
|
await new IssuesProcessor(args).processIssues();
|
|
} catch (error) {
|
|
core.error(error);
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
function _getAndValidateArgs(): IIssuesProcessorOptions {
|
|
const args: IIssuesProcessorOptions = {
|
|
repoToken: core.getInput('repo-token'),
|
|
staleIssueMessage: core.getInput('stale-issue-message'),
|
|
stalePrMessage: core.getInput('stale-pr-message'),
|
|
closeIssueMessage: core.getInput('close-issue-message'),
|
|
closePrMessage: core.getInput('close-pr-message'),
|
|
daysBeforeStale: parseInt(
|
|
core.getInput('days-before-stale', {required: true})
|
|
),
|
|
daysBeforeIssueStale: parseInt(core.getInput('days-before-issue-stale')),
|
|
daysBeforePrStale: parseInt(core.getInput('days-before-pr-stale')),
|
|
daysBeforeClose: parseInt(
|
|
core.getInput('days-before-close', {required: true})
|
|
),
|
|
daysBeforeIssueClose: parseInt(core.getInput('days-before-issue-close')),
|
|
daysBeforePrClose: parseInt(core.getInput('days-before-pr-close')),
|
|
staleIssueLabel: core.getInput('stale-issue-label', {required: true}),
|
|
closeIssueLabel: core.getInput('close-issue-label'),
|
|
exemptIssueLabels: core.getInput('exempt-issue-labels'),
|
|
stalePrLabel: core.getInput('stale-pr-label', {required: true}),
|
|
closePrLabel: core.getInput('close-pr-label'),
|
|
exemptPrLabels: core.getInput('exempt-pr-labels'),
|
|
onlyLabels: core.getInput('only-labels'),
|
|
onlyIssueLabels: core.getInput('only-issue-labels'),
|
|
onlyPrLabels: core.getInput('only-pr-labels'),
|
|
anyOfLabels: core.getInput('any-of-labels'),
|
|
operationsPerRun: parseInt(
|
|
core.getInput('operations-per-run', {required: true})
|
|
),
|
|
removeStaleWhenUpdated: !(
|
|
core.getInput('remove-stale-when-updated') === 'false'
|
|
),
|
|
debugOnly: core.getInput('debug-only') === 'true',
|
|
ascending: core.getInput('ascending') === 'true',
|
|
skipStalePrMessage: core.getInput('skip-stale-pr-message') === 'true',
|
|
skipStaleIssueMessage: core.getInput('skip-stale-issue-message') === 'true',
|
|
deleteBranch: core.getInput('delete-branch') === 'true',
|
|
startDate:
|
|
core.getInput('start-date') !== ''
|
|
? core.getInput('start-date')
|
|
: undefined,
|
|
exemptMilestones: core.getInput('exempt-milestones'),
|
|
exemptIssueMilestones: core.getInput('exempt-issue-milestones'),
|
|
exemptPrMilestones: core.getInput('exempt-pr-milestones'),
|
|
exemptAllMilestones: core.getInput('exempt-all-milestones') === 'true',
|
|
exemptAllIssueMilestones: _toOptionalBoolean('exempt-all-issue-milestones'),
|
|
exemptAllPrMilestones: _toOptionalBoolean('exempt-all-pr-milestones'),
|
|
exemptAssignees: core.getInput('exempt-assignees'),
|
|
exemptIssueAssignees: core.getInput('exempt-issue-assignees'),
|
|
exemptPrAssignees: core.getInput('exempt-pr-assignees'),
|
|
exemptAllAssignees: core.getInput('exempt-all-assignees') === 'true',
|
|
exemptAllIssueAssignees: _toOptionalBoolean('exempt-all-issue-assignees'),
|
|
exemptAllPrAssignees: _toOptionalBoolean('exempt-all-pr-assignees'),
|
|
enableStatistics: core.getInput('enable-statistics') === 'true'
|
|
};
|
|
|
|
for (const numberInput of [
|
|
'days-before-stale',
|
|
'days-before-close',
|
|
'operations-per-run'
|
|
]) {
|
|
if (isNaN(parseInt(core.getInput(numberInput)))) {
|
|
core.setFailed(
|
|
new Error(`Option "${numberInput}" did not parse to a valid integer`)
|
|
);
|
|
}
|
|
}
|
|
|
|
for (const optionalDateInput of ['start-date']) {
|
|
// Ignore empty dates because it is considered as the right type for a default value (so a valid one)
|
|
if (core.getInput(optionalDateInput) !== '') {
|
|
if (!isValidDate(new Date(core.getInput(optionalDateInput)))) {
|
|
core.setFailed(
|
|
new Error(
|
|
`Option "${optionalDateInput}" did not parse to a valid date`
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
return args;
|
|
}
|
|
|
|
function _toOptionalBoolean(
|
|
argumentName: Readonly<string>
|
|
): boolean | undefined {
|
|
const argument: string = core.getInput(argumentName);
|
|
|
|
if (argument === 'true') {
|
|
return true;
|
|
} else if (argument === 'false') {
|
|
return false;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
|
|
void _run();
|