@dino-dna/probot-stale
Version:
A GitHub App built with Probot that closes abandoned Issues and Pull Requests after a period of inactivity.
66 lines (52 loc) • 1.84 kB
JavaScript
require('newrelic')
const createScheduler = require('probot-scheduler')
const Stale = require('./lib/stale')
module.exports = async app => {
// Visit all repositories to mark and sweep stale issues
const scheduler = createScheduler(app)
// Unmark stale issues if a user comments
const events = [
'issue_comment',
'issues',
'pull_request',
'pull_request_review',
'pull_request_review_comment'
]
app.on(events, unmark)
app.on('schedule.repository', markAndSweep)
async function unmark (context) {
if (!context.isBot) {
const stale = await forRepository(context)
let issue = context.payload.issue || context.payload.pull_request
const type = context.payload.issue ? 'issues' : 'pulls'
// Some payloads don't include labels
if (!issue.labels) {
try {
issue = (await context.github.issues.get(context.issue())).data
} catch (error) {
context.log('Issue not found')
}
}
const staleLabelAdded = context.payload.action === 'labeled' &&
context.payload.label.name === stale.config.staleLabel
if (stale.hasStaleLabel(type, issue) && issue.state !== 'closed' && !staleLabelAdded) {
stale.unmarkIssue(type, issue)
}
}
}
async function markAndSweep (context) {
const stale = await forRepository(context)
await stale.markAndSweep('pulls')
await stale.markAndSweep('issues')
}
async function forRepository (context) {
let config = await context.config('stale.yml')
if (!config) {
scheduler.stop(context.payload.repository)
// Don't actually perform for repository without a config
config = { perform: false }
}
config = Object.assign(config, context.repo({ logger: app.log }))
return new Stale(context.github, config)
}
}