Skip to content

Commit

Permalink
feat(workflows): auto close issues with can't reproduce label (#11631)
Browse files Browse the repository at this point in the history
* feat(workflows): auto close issues with 'can't reproduce' label

* chore: update
  • Loading branch information
edison1105 authored Aug 16, 2024
1 parent 9cf8ea9 commit 7ba59c6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/close-cant-reproduce-issues.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7ba59c6

Please sign in to comment.