feat(workflows): auto close issues with `can't reproduce` label (#11631)

* feat(workflows): auto close issues with 'can't reproduce' label

* chore: update
This commit is contained in:
edison 2024-08-16 16:01:40 +08:00 committed by GitHub
parent 9cf8ea9ba7
commit 7ba59c6d43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
name: Auto close issues with "can't reproduce" label
on:
schedule:
- cron: '0 0 * * *'
permissions:
issues: write
jobs:
close-issues:
if: github.repository == 'vuejs/core'
runs-on: ubuntu-latest
steps:
- name: can't reproduce
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: "can't reproduce"
inactive-day: 3