Skip to content

Commit

Permalink
feat(ci): add issue-close.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eiinu committed Feb 2, 2024
1 parent d1c3c14 commit ea2d1d9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/issue-close.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Close Issue

on:
schedule:
- cron: "0 2 * * 1"
workflow_dispatch: # Allow for running this manually.

jobs:
issue-to-be-closed:
runs-on: ubuntu-latest
steps:
- name: close-issues
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issues'
token: ${{ secrets.GITHUB_TOKEN }}
labels: 'to be closed'
inactive-day: 7

0 comments on commit ea2d1d9

Please sign in to comment.