Skip to content

Commit

Permalink
ci: add workflow to close issues without repro automaticalluy (#1031)
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh authored Jul 23, 2024
1 parent 7fa6577 commit 399c6bb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/issue-needs-repro.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Close Issues (needs repro)

on:
schedule:
- cron: "0 0 * * *"

jobs:
close-issues:
if: github.repository == 'withastro/compiler'
runs-on: ubuntu-latest
steps:
- name: needs repro
uses: actions-cool/issues-helper@v3
with:
actions: "close-issues"
token: ${{ secrets.GITHUB_TOKEN }}
labels: "needs repro"
inactive-day: 3

0 comments on commit 399c6bb

Please sign in to comment.