From 1d22cae10bc9c5e3530f1093a8449c86fa13e2f7 Mon Sep 17 00:00:00 2001 From: Harsha Raghu Date: Sun, 23 Jul 2023 20:01:55 +0530 Subject: [PATCH] Create stale.yml --- .github/workflows/stale.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 00000000..8d943595 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,12 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v8 + with: + only-labels: 'waiting-for-response'