This repository was archived by the owner on Apr 9, 2026. It is now read-only.
Stale Issues & PRs #32
This file contains hidden or 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: Stale Issues & PRs | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| on: | |
| schedule: | |
| # Her gün saat 02:00 UTC çalışır | |
| - cron: '0 2 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| stale: | |
| name: Mark & Close Stale | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| # ── Issue ayarları ────────────────────────── | |
| days-before-issue-stale: 30 | |
| days-before-issue-close: 7 | |
| stale-issue-label: stale | |
| stale-issue-message: > | |
| Bu issue 30 gündür herhangi bir aktivite olmadığı için | |
| **stale** olarak işaretlendi. | |
| 7 gün içinde yanıt gelmezse otomatik kapatılacak. | |
| Hâlâ geçerliyse yorum bırak veya `stale` etiketini kaldır. | |
| close-issue-message: > | |
| 7 gün boyunca yanıt alınamadığından otomatik kapatıldı. | |
| Hâlâ geçerliyse yeniden açabilirsin. | |
| # ── PR ayarları ───────────────────────────── | |
| days-before-pr-stale: 21 | |
| days-before-pr-close: 7 | |
| stale-pr-label: stale | |
| stale-pr-message: > | |
| Bu PR 21 gündür güncellenmediği için **stale** olarak işaretlendi. | |
| 7 gün içinde aktivite olmazsa otomatik kapatılacak. | |
| Hâlâ aktifse `stale` etiketini kaldır. | |
| close-pr-message: > | |
| 7 gün boyunca güncellenmediğinden otomatik kapatıldı. | |
| Hazır olduğunda yeniden açabilirsin. | |
| # ── Muafiyetler ───────────────────────────── | |
| # BUG FIX: 'WIP' ve 'work-in-progress' aynı şey — duplicate kaldırıldı. | |
| exempt-issue-labels: pinned,security,bug,confirmed | |
| exempt-pr-labels: pinned,WIP | |
| # Her çalışmada işlenecek max item (rate limit koruması) | |
| operations-per-run: 50 | |
| remove-stale-when-updated: true |