mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-03-27 01:12:18 +08:00
22 lines
840 B
YAML
22 lines
840 B
YAML
name: 'Handle stale issues and PRs'
|
|
on:
|
|
schedule:
|
|
- cron: '30 1 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
operations-per-run: 250
|
|
days-before-stale: 90
|
|
days-before-close: 30
|
|
stale-issue-label: 'stale'
|
|
stale-pr-label: 'stale'
|
|
remove-stale-when-updated: true
|
|
stale-issue-message: ''
|
|
close-issue-message: 'This issue has been automatically closed due to 120 days of inactivity. If you believe this is still relevant, please feel free to reopen it or create a new issue.'
|
|
stale-pr-message: ''
|
|
close-pr-message: 'This pull request has been automatically closed due to 120 days of inactivity. If you would like to continue, please feel free to reopen it or submit a new PR.'
|