From 7ef743ca584fc4619dd9840c18b54becca895f73 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Fri, 24 Jul 2020 19:27:19 +0900 Subject: [PATCH] [Workflow] Add stale action to workflows (#1860) --- .github/workflows/stale.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000..f9f208c --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,14 @@ +name: "Close stale issues" +on: + schedule: + - cron: "0 15 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days' + stale-pr-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days' -- 2.7.4