Compare commits

..

1 Commits

Author SHA1 Message Date
Danny McCormick
0d4fcbf2f9 Packag nits 2019-08-07 10:14:36 -04:00
4 changed files with 28 additions and 38 deletions

View File

@@ -11,13 +11,13 @@ Basic:
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
- cron: "0 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1.1.0
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Message to comment on stale issues. If none provided, will not mark issues stale'
@@ -29,13 +29,13 @@ Configure stale timeouts:
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
- cron: "0 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1.1.0
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
@@ -48,19 +48,17 @@ Configure labels:
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
- cron: "0 * * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1.1.0
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'Stale issue message'
stale-pr-message: 'Stale issue message'
stale-issue-label: 'no-issue-activity'
exempt-issue-label: 'awaiting-approval'
stale-pr-label: 'no-pr-activity'
exempt-pr-label: 'awaiting-approval'
```

View File

@@ -6,28 +6,24 @@ inputs:
description: 'Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}'
required: true
stale-issue-message:
description: 'The message to post on the issue when tagging it. If none provided, will not mark issues stale.'
description: 'The message to post on the issue when tagging it. If none provided, will not mark iusses stale.'
stale-pr-message:
description: 'The message to post on the pr when tagging it. If none provided, will not mark pull requests stale.'
description: 'The message to post on the pr when tagging it. If none provided, will not mark prs stale.'
days-before-stale:
description: 'The number of days old an issue can be before marking it stale'
default: 60
days-before-close:
description: 'The number of days to wait to close an issue or pull request after it being marked stale'
description: 'The number of days to wait to close an issue or pr after it being marked stale'
default: 7
stale-issue-label:
description: 'The label to apply when an issue is stale'
default: 'Stale'
exempt-issue-label:
description: 'The label to apply when an issue is exempt from being marked stale'
stale-pr-label:
description: 'The label to apply when a pull request is stale'
description: 'The label to apply when a pr is stale'
default: 'Stale'
exempt-pr-label:
description: 'The label to apply when a pull request is exempt from being marked stale'
operations-per-run:
description: 'The maximum number of operations per run, used to control rate limiting'
default: 30
runs:
using: 'node12'
main: 'lib/main.js'
main: 'lib/main.js'

View File

@@ -12,12 +12,12 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/stale.git"
"url": "git+https://github.com/actions/start-vm-action.git"
},
"keywords": [
"actions",
"node",
"stale"
"setup"
],
"author": "GitHub",
"license": "MIT",

View File

@@ -2,9 +2,6 @@ import * as core from '@actions/core';
import * as github from '@actions/github';
import * as Octokit from '@octokit/rest';
type Issue = Octokit.IssuesListForRepoResponseItem;
type IssueLabel = Octokit.IssuesListForRepoResponseItemLabelsItem;
type Args = {
repoToken: string;
staleIssueMessage: string;
@@ -12,9 +9,7 @@ type Args = {
daysBeforeStale: number;
daysBeforeClose: number;
staleIssueLabel: string;
exemptIssueLabel: string;
stalePrLabel: string;
exemptPrLabel: string;
operationsPerRun: number;
};
@@ -56,16 +51,13 @@ async function processIssues(
let staleMessage = isPr ? args.stalePrMessage : args.staleIssueMessage;
if (!staleMessage) {
core.debug(`skipping ${isPr ? 'pr' : 'issue'} due to empty message`);
core.debug(`skipping ${isPr ? "pr" : "issue"} due to empty message`);
continue;
}
let staleLabel = isPr ? args.stalePrLabel : args.staleIssueLabel;
let exemptLabel = isPr ? args.exemptPrLabel : args.exemptIssueLabel;
if (exemptLabel && isLabeled(issue, exemptLabel)) {
continue;
} else if (isLabeled(issue, staleLabel)) {
if (isLabeledStale(issue, staleLabel)) {
if (wasLastUpdatedBefore(issue, args.daysBeforeClose)) {
operationsLeft -= await closeIssue(client, issue);
} else {
@@ -90,14 +82,20 @@ async function processIssues(
return await processIssues(client, args, operationsLeft, page + 1);
}
function isLabeled(issue: Issue, label: string): boolean {
const labelComparer: (l: IssueLabel) => boolean = l =>
label.localeCompare(l.name, undefined, {sensitivity: 'accent'}) === 0;
function isLabeledStale(
issue: Octokit.IssuesListForRepoResponseItem,
label: string
): boolean {
const labelComparer = l =>
label.localeCompare(l.name, undefined, {sensitivity: 'accent'});
return issue.labels.filter(labelComparer).length > 0;
}
function wasLastUpdatedBefore(issue: Issue, num_days: number): boolean {
const daysInMillis = 1000 * 60 * 60 * 24 * num_days;
function wasLastUpdatedBefore(
issue: Octokit.IssuesListForRepoResponseItem,
num_days: number
): boolean {
const daysInMillis = 1000 * 60 * 60 * num_days;
const millisSinceLastUpdated =
new Date().getTime() - new Date(issue.updated_at).getTime();
return millisSinceLastUpdated >= daysInMillis;
@@ -105,7 +103,7 @@ function wasLastUpdatedBefore(issue: Issue, num_days: number): boolean {
async function markStale(
client: github.GitHub,
issue: Issue,
issue: Octokit.IssuesListForRepoResponseItem,
staleMessage: string,
staleLabel: string
): Promise<number> {
@@ -130,7 +128,7 @@ async function markStale(
async function closeIssue(
client: github.GitHub,
issue: Issue
issue: Octokit.IssuesListForRepoResponseItem
): Promise<number> {
core.debug(`closing issue ${issue.title} for being stale`);
@@ -156,9 +154,7 @@ function getAndValidateArgs(): Args {
core.getInput('days-before-close', {required: true})
),
staleIssueLabel: core.getInput('stale-issue-label', {required: true}),
exemptIssueLabel: core.getInput('exempt-issue-label'),
stalePrLabel: core.getInput('stale-pr-label', {required: true}),
exemptPrLabel: core.getInput('exempt-pr-label'),
operationsPerRun: parseInt(
core.getInput('operations-per-run', {required: true})
)