36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See LICENSE in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { OctoKit } from '../api/octokit'
|
|
import { getInput, getRequiredInput } from '../common/utils'
|
|
import { AddComment } from './AddComment'
|
|
import { Action } from '../common/Action'
|
|
|
|
class AddCommentAction extends Action {
|
|
id = 'AddComment';
|
|
|
|
async onTriggered(github: OctoKit) {
|
|
await new AddComment(
|
|
github,
|
|
getInput('createdAfter') || undefined,
|
|
+(getInput('afterDays') || 0),
|
|
getRequiredInput('labels'),
|
|
getInput('addComment') || '',
|
|
getInput('addLabels') || undefined,
|
|
getInput('removeLabels') || undefined,
|
|
getInput('setMilestoneId') || undefined,
|
|
getInput('milestoneName') || undefined,
|
|
getInput('milestoneId') || undefined,
|
|
getInput('ignoreLabels') || undefined,
|
|
getInput('ignoreMilestoneNames') || undefined,
|
|
getInput('ignoreMilestoneIds') || undefined,
|
|
+(getInput('minimumVotes') || 0),
|
|
+(getInput('maximumVotes') || 9999999),
|
|
getInput('involves') || undefined
|
|
).run();
|
|
}
|
|
}
|
|
|
|
new AddCommentAction().run(); // eslint-disable-line
|