File: label-stale.yml

package info (click to toggle)
python-anndata 0.12.6-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,876 kB
  • sloc: python: 21,429; makefile: 23
file content (21 lines) | stat: -rw-r--r-- 770 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: "Label stale issues"
on:
  schedule:
    - cron: "30 1 * * 1,2,3,4,5"
  workflow_dispatch:

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/stale@v5
        with:
          days-before-issue-stale: 60
          days-before-pr-stale: -1 # We don't want to mark PRs as stale
          days-before-close: -1 # We don't want to close issues in this action
          stale-issue-label: stale
          exempt-issue-labels: pinned,enhancement
          stale-issue-message: |
            This issue has been automatically marked as stale because it has not had recent activity.
            Please add a comment if you want to keep the issue open. Thank you for your contributions!
          debug-only: false # set to `true` to enable dry-run