Files
alfred-android/.github/workflows/stale.yml
dependabot[bot] 21e71dc06f Bump actions/stale from 6 to 9 (#78)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-16 15:31:36 +00:00

21 lines
760 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: Mark & Close Stale PRs
on:
workflow_dispatch:
schedule:
- cron: "30 4 * * MON"
jobs:
stale:
runs-on: [ default ]
steps:
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-pr-stale: 42
stale-pr-label: 'STALE'
stale-pr-message: "This PR hasn't seen activity in the last 6 weeks! Should it be merged, closed, or worked on further? If you want to keep it open, post a comment or remove the `STALE` label otherwise, this will be closed in 2 weeks."
days-before-pr-close: 14
close-pr-label: 'CLOSED BY STALE'
close-pr-message: 'This PR was closed due to 8 weeks of inactivity. Feel free to reopen it if still relevant.'