File: stale_issues.yml

package info (click to toggle)
bleak 2.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,076 kB
  • sloc: python: 11,282; makefile: 165; java: 105
file content (16 lines) | stat: -rw-r--r-- 646 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: "Close stale issues and PRs"
on:
  schedule:
    - cron: "37 1 * * 0"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/stale@v9
        with:
          days-before-stale: 500
          days-before-close: 100
          any-of-labels: "3rd party issue, more info required"
          stale-issue-message: This issue has been automatically marked as stale because it has not had any activity for 500 days. It will be closed in 100 days if no further activity occurs.
          close-issue-message: This issue has been automatically closed because it has not had any activity for 100 days after being marked as stale.