Files
uitron/.github/workflows/stale.yml

23 lines
853 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

name: Stale
on:
workflow_dispatch:
schedule:
- cron: "30 4 * * MON"
jobs:
stale:
runs-on: [ default ]
steps:
- name: Stale
uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-pr-stale: 21
stale-pr-label: 'STALE / OPEN'
stale-pr-message: "This PR hasn't seen activity in the last 3 weeks! Should it be merged, closed, or worked on further? If you want to keep it open, post a comment or remove the `STALE / OPEN` label otherwise, this will be closed in 1 week."
days-before-pr-close: 7
close-pr-label: 'STALE / CLOSED'
close-pr-message: 'This PR was closed due to 4 weeks of inactivity. Feel free to reopen it if still relevant.'
exempt-pr-labels: 'DEPENDABOT / GITHUB ACTIONS, DEPENDABOT / GRADLE'