35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
name: More Info Needed Closer
|
|
on:
|
|
schedule:
|
|
- cron: 10 11 * * * # Run at 11:10 AM UTC (3:10 AM PST, 4:10 AM PDT)
|
|
workflow_dispatch:
|
|
inputs:
|
|
readonly:
|
|
description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub"
|
|
default: false
|
|
|
|
env:
|
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v5
|
|
- 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: more info needed
|
|
ignoreLabels: debugger,internal
|
|
closeDays: 30
|
|
closeComment: "This issue has been closed because it needs more information and has not had recent activity."
|
|
pingDays: 14
|
|
pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information."
|
|
|