From ecac13f272634b285247dfa34d1e78903b9452a8 Mon Sep 17 00:00:00 2001 From: Joana Hrotko Date: Mon, 8 Jul 2024 14:15:10 +0100 Subject: [PATCH] Remove debug mode and run twice a week Signed-off-by: Joana Hrotko --- .github/workflows/stale.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 61c86f7232a..56dc36bff18 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,14 +1,7 @@ name: 'Close stale issues' on: - # schedule: - # - cron: '0 0 * * *' # at midnight UTC every day - pull_request: - workflow_dispatch: - inputs: - debug_enabled: - description: 'To run in debug mode' - required: false - default: "true" + schedule: + - cron: '0 0 * * 0,3' # at midnight UTC every Sunday and Tuesday jobs: stale: runs-on: ubuntu-latest @@ -19,7 +12,6 @@ jobs: - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - debug-only: ${{ github.event.inputs.debug_enabled }} stale-issue-message: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you