From 2908d82845c018193655e68f3c20a5ad03bc0efd Mon Sep 17 00:00:00 2001 From: Stefan Ruvceski <96768603+ruvceskistefan@users.noreply.github.com> Date: Mon, 11 Sep 2023 15:19:05 +0200 Subject: [PATCH] remove debug-only flag from stale bot action (#2834) Co-authored-by: Ben Wells --- .github/workflows/stale-bot.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/stale-bot.yml b/.github/workflows/stale-bot.yml index 13fc526c4..bec1321bb 100644 --- a/.github/workflows/stale-bot.yml +++ b/.github/workflows/stale-bot.yml @@ -1,4 +1,4 @@ -name: ‘Close stale Runner issues’ +name: Stale Bot on: workflow_dispatch: schedule: @@ -9,9 +9,8 @@ jobs: steps: - uses: actions/stale@v8 with: - stale-issue-message: ‘This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 15 days.’ - close-issue-message: ‘This issue was closed because it has been stalled for 15 days with no activity.’ - exempt-issue-labels: ‘keep’ + stale-issue-message: "This issue is stale because it has been open 365 days with no activity. Remove stale label or comment or this will be closed in 15 days." + close-issue-message: "This issue was closed because it has been stalled for 15 days with no activity." + exempt-issue-labels: "keep" days-before-stale: 365 - days-before-close: 15 - debug-only: true + days-before-close: 15 \ No newline at end of file