From 1474bf2fd667305b1b1a521424b86d5074ca83da Mon Sep 17 00:00:00 2001 From: Ankur Srivastava Date: Sun, 18 Apr 2021 13:49:57 +0200 Subject: [PATCH] added stale issue actions (#59) * misc: added stale-issue-pr action Signed-off-by: Ankur Srivastava --- .github/workflows/stale.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/stale.yaml diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml new file mode 100644 index 0000000..7f77518 --- /dev/null +++ b/.github/workflows/stale.yaml @@ -0,0 +1,22 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +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 5 days.' + stale-issue-label: 'no-issue-activity' + close-issue-message: 'This issue was closed because it has been stalled for 10 days with no activity.' + stale-pr-message: 'This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 10 days.' + stale-pr-label: 'no-pr-activity' + close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.' + days-before-issue-stale: 60 + days-before-pr-stale: 60 + days-before-issue-close: 10 + days-before-pr-close: 10