Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
name: No response
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "30 1 * * *" # Run every day at 01:30
|
|
workflow_dispatch:
|
|
issue_comment:
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
close:
|
|
name: Close issues with no response
|
|
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout script
|
|
uses: actions/checkout@v6
|
|
with:
|
|
sparse-checkout: .github/scripts/close_unresponsive.js
|
|
sparse-checkout-cone-mode: false
|
|
|
|
- name: Run script
|
|
uses: actions/github-script@v8
|
|
with:
|
|
script: |
|
|
const script = require('./.github/scripts/close_unresponsive.js')
|
|
await script({github, context})
|
|
|
|
remove_label:
|
|
name: Remove response label
|
|
if: github.event_name == 'issue_comment'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout script
|
|
uses: actions/checkout@v6
|
|
with:
|
|
sparse-checkout: .github/scripts/remove_response_label.js
|
|
sparse-checkout-cone-mode: false
|
|
|
|
- name: Run script
|
|
uses: actions/github-script@v8
|
|
with:
|
|
script: |
|
|
const script = require('./.github/scripts/remove_response_label.js')
|
|
await script({github, context})
|