mirror of
https://github.com/chenasraf/flathub.git
synced 2026-05-18 01:39:06 +00:00
24 lines
745 B
YAML
24 lines
745 B
YAML
name: "Close stale PR"
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 1,4"
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v9
|
|
with:
|
|
repo-token: ${{ secrets.FLATHUBBOT_TOKEN }}
|
|
stale-pr-message: "This PR hasn't received any updates in a year and will be automatically closed in 30 days. If you still plan to work on this please comment or re-open the PR."
|
|
days-before-stale: -1
|
|
days-before-close: -1
|
|
days-before-pr-stale: 365
|
|
days-before-pr-close: 30
|
|
any-of-pr-labels: awaiting-changes,blocked,work-in-progress,awaiting-upstream
|
|
remove-pr-stale-when-updated: true
|
|
exempt-pr-labels: leave-open
|
|
operations-per-run: 100
|