오픈소스 기여하다 보면 PR이 계속 남아있으면 언젠가 자동으로 클로즈 된다.
깃헙 액션으로 stale이라는 액션이 존재해서 이걸로 관리하는 것 같다.
GitHub - actions/stale: Marks issues and pull requests that have not had recent interaction
Marks issues and pull requests that have not had recent interaction - actions/stale
github.com
name: Close stale issues and PRs
on:
schedule:
- cron: "0 0 * * *" # 매일 자정 실행
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 60 # 60일 지나면 stale 라벨
days-before-close: 90 # stale 이후 90일 지나면 close
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'pinned,security'
exempt-pr-labels: 'pinned,security'
close-issue-message: 'Closing this issue due to inactivity.'
close-pr-message: 'Closing this PR due to inactivity.'
'메모' 카테고리의 다른 글
flutter 개발환경 구성하기 (mac) (0) | 2025.10.21 |
---|---|
vscode Git: gpg failed to sign the data: 에러 해결 (0) | 2025.10.02 |
visual studio code 플러그인 정리 (1) | 2024.10.06 |
iTerms 화면 모드 변환하기 (0) | 2024.10.02 |
다이어 그램 도구 추천 Excalidraw (0) | 2024.09.28 |