summaryrefslogtreecommitdiff
path: root/.github/workflows/stale.yml
blob: b9160b548ab3e7c9dec2c811862d7bd48a284836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This workflow warns and then closes issues and PRs that have had no activity
# for a specified amount of time.
#
# For more information, see:
# https://github.com/actions/stale
#
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: BSD-2-Clause-Patent
#

name: Stale Check

on:
  schedule:
    # At 23:35 on every day-of-week from Sunday through Saturday
    # https://crontab.guru/#35_23_*_*_0-6
    - cron: '35 23 * * 0-6'
  workflow_dispatch:

jobs:
  stale:
    name: Stale
    runs-on: ubuntu-latest
    permissions:
      issues: write
      pull-requests: write

    steps:
    - name: Check for Stale Items
      uses: actions/stale@v8
      with:
        days-before-issue-close: -1
        days-before-issue-stale: -1
        days-before-pr-stale: 60
        days-before-pr-close: 7
        stale-pr-message: >
          This PR has been automatically marked as stale because it has not had
          activity in 60 days. It will be closed if no further activity occurs within
          7 days. Thank you for your contributions.
        close-pr-message: >
          This pull request has been automatically been closed because it did not have any
          activity in 60 days and no follow up within 7 days after being marked stale.
          Thank you for your contributions.
        stale-pr-label: stale