30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
name: Question Closer - debugger
|
|
on:
|
|
schedule:
|
|
- cron: 20 11 * * * # Run at 11:20 AM UTC (3:20 AM PST, 4:20 AM PDT)
|
|
workflow_dispatch:
|
|
inputs:
|
|
readonly:
|
|
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
|
|
default: false
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
- name: Install Actions
|
|
run: cd ./.github/actions && npm install --production && cd ../..
|
|
- name: Stale Closer
|
|
uses: ./.github/actions/StaleCloser
|
|
with:
|
|
readonly: ${{ github.event.inputs.readonly }}
|
|
labels: question,debugger
|
|
ignoreLabels: language service,internal
|
|
involves: wardengnaw,pieandcakes,calgagi
|
|
closeDays: 14
|
|
closeComment: "This issue has been closed automatically because it's labeled as a 'question' and has not had recent activity."
|
|
pingDays: 7
|
|
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the question has been answered."
|