From 88e2bb4dad49e88628b867f77999793229eac701 Mon Sep 17 00:00:00 2001 From: Salsabil Maulana Akbar Date: Wed, 13 Dec 2023 11:28:28 +0700 Subject: [PATCH] Update stale workflow to avoid Misflag Issue (#173) * Update stale workflow to avoid misflag issue * Update stale.yml Add dry-run flag --- .github/workflows/stale.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 51b75f0f6..da60ea42f 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -22,7 +22,10 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'Hi, may I know if you are still working on this issue? Please let @holylovenia @SamuelCahyawijaya @sabilmakbar know if you need any help.' - stale-issue-label: 'no-issue-activity' + stale-issue-label: 'staled-issue' days-before-stale: 14 days-before-close: -1 include-only-assigned: true + exempt-issue-labels: 'in-progress,pr-ready' + operations-per-run: 100 + debug-only: true