Skip to content

chore: processing stale issue #1171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 2, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: add stale label on stale issue
  • Loading branch information
nayounsang committed Apr 5, 2025
commit b9f1cb834ed605113d514a17baf82861200d50bc
29 changes: 29 additions & 0 deletions .github/workflows/stale-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'Stale Issue'
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:

permissions:
issues: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: -1

stale-issue-message: '30일 동안 작업이 없어 할당을 해제합니다.'
stale-issue-label: 'stale'
exempt-issue-labels: 'DO NOT CLOSE OR MERGE,discussion,term,TIP'

days-before-pr-stale: -1

labels-to-remove-when-unstale: 'stale'

include-only-assigned: true