mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
64c2c7c40d
Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
949 B
YAML
36 lines
949 B
YAML
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:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/github-script@v7
|
|
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:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
const script = require('./.github/scripts/remove_response_label.js')
|
|
await script({github, context})
|