2023-04-27 13:07:44 -07:00
|
|
|
name: no_response
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: '30 1 * * *' # Run every day at 01:30
|
|
|
|
workflow_dispatch:
|
|
|
|
issue_comment:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
close:
|
|
|
|
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
2023-09-04 05:51:40 -07:00
|
|
|
- uses: actions/checkout@v4
|
2023-11-14 21:57:54 -07:00
|
|
|
- uses: actions/github-script@v7
|
2023-04-27 13:07:44 -07:00
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const script = require('./.github/scripts/close_unresponsive.js')
|
|
|
|
await script({github, context})
|
|
|
|
|
|
|
|
remove_label:
|
|
|
|
if: github.event_name == 'issue_comment'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
issues: write
|
|
|
|
pull-requests: write
|
|
|
|
steps:
|
2023-09-04 05:51:40 -07:00
|
|
|
- uses: actions/checkout@v4
|
2023-11-14 21:57:54 -07:00
|
|
|
- uses: actions/github-script@v7
|
2023-04-27 13:07:44 -07:00
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const script = require('./.github/scripts/remove_response_label.js')
|
|
|
|
await script({github, context})
|