Files
outline/.github/workflows/stale.yml
T
Tom MoorandGitHub b67b7a24a8 Add nightly docker builds (#13223)
* Add nightly docker builds

* Separate environment to ungate nightly builds from manual approval
2026-08-01 11:07:22 -04:00

31 lines
1.1 KiB
YAML

name: "Close Stale PRs"
on:
workflow_dispatch:
schedule:
- cron: "30 1 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
id: stale
with:
stale-pr-message: "This PR is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days"
stale-issue-message: "This issue is stale because it has been open 90 days with no activity. Remove stale label or comment or this will be closed in 5 days"
close-pr-message: "Automatically closed due to inactivity"
close-issue-message: "Automatically closed due to inactivity"
days-before-issue-stale: 120
days-before-pr-stale: 60
days-before-close: 5
operations-per-run: 60
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: "security,pinned,A1"
- name: Print outputs
run: echo "${{ steps.stale.outputs['staled-issues-prs'] }},${{ steps.stale.outputs['closed-issues-prs'] }}"