mirror of
https://github.com/stan220/flathub.git
synced 2026-09-08 18:29:08 +00:00
35 lines
1.1 KiB
YAML
35 lines
1.1 KiB
YAML
name: "Close stale PR"
|
|
on:
|
|
schedule:
|
|
- cron: "0 5 * * 0"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# 9.1.0
|
|
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: |-
|
|
This issue has not received any updates and it will be
|
|
automatically closed in 7 days. Please comment or reopen if
|
|
necessary.
|
|
stale-pr-message: |-
|
|
This pull request has not received any updates and it will be
|
|
automatically closed in 7 days. Please comment or reopen if
|
|
necessary.
|
|
days-before-stale: 183
|
|
days-before-close: 7
|
|
any-of-issue-labels: quality-guidelines
|
|
any-of-pr-labels: awaiting-changes,work-in-progress,awaiting-upstream
|
|
remove-stale-when-updated: true
|
|
exempt-issue-labels: leave-open
|
|
exempt-pr-labels: leave-open
|
|
operations-per-run: 500
|
|
ascending: true
|