Close Inactive Issues #341
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close Inactive Issues | |
# inactive 면서 일동안 활동이 없는 이슈를 닫음 | |
on: | |
schedule: | |
- cron: "0 15 * * *" | |
# 한국시간 매일 자정에 실행 | |
jobs: | |
check-need-info: | |
runs-on: ubuntu-latest | |
if: github.repository == 'ex-em/EVUI' | |
steps: | |
- name: close-issues | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'close-issues' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
labels: 'inactive' | |
inactive-day: 3 | |
body: '오래된 이슈는 닫고 있어요. 필요하다면 다시 열어주세요. :smile:' |