Skip to content

Commit 399b436

Browse files
committed
Merge for 1.2.0.
2 parents 25d7497 + 880277c commit 399b436

File tree

211 files changed

+3079
-1406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+3079
-1406
lines changed

.github/actions/StaleCloser/StaleCloser.js

+105-105
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/StaleCloser/StaleCloser.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ export class StaleCloser extends ActionBase {
2525
ignoreMilestoneNames?: string,
2626
ignoreMilestoneIds?: string,
2727
minimumVotes?: number,
28-
maximumVotes?: number
28+
maximumVotes?: number,
29+
involves?: string
2930
)
3031
{
31-
super(labels, milestoneName, milestoneId, ignoreLabels, ignoreMilestoneNames, ignoreMilestoneIds, minimumVotes, maximumVotes);
32+
super(labels, milestoneName, milestoneId, ignoreLabels, ignoreMilestoneNames, ignoreMilestoneIds, minimumVotes, maximumVotes, involves);
3233
}
3334

3435
async run() {

.github/actions/StaleCloser/action.yml

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ inputs:
3838
descriptions: Only issues with at least this many votes will be considered.
3939
maximumVotes:
4040
descriptions: Only issues fewer or equal to this many votes will be considered.
41+
involves:
42+
descriptions: Qualifier to find issues that in some way involve a certain user either as an author, assignee, or mentions.
4143
readonly:
4244
description: If true, changes are not applied.
4345
runs:

.github/actions/StaleCloser/index.js

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/StaleCloser/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ class StaleCloserAction extends Action {
2929
getInput('ignoreMilestoneNames') || undefined,
3030
getInput('ignoreMilestoneIds') || undefined,
3131
+(getInput('minimumVotes') || 0),
32-
+(getInput('maximumVotes') || 9999999)
32+
+(getInput('maximumVotes') || 9999999),
33+
getInput('involves') || undefined
3334
).run()
3435
}
3536
}

0 commit comments

Comments
 (0)