mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-09-13 13:48:00 -04:00
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
name: Close Stale Issues
|
|
on:
|
|
schedule:
|
|
- cron: 0 6 * * *
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
stale_issues:
|
|
name: Close Stale Issues
|
|
# actions/stale is pure API work with no checkout, so ubuntu-slim's container is
|
|
# sufficient. Its 15-minute platform cap matches the timeout already set here.
|
|
runs-on: ubuntu-slim
|
|
timeout-minutes: 15
|
|
if: github.repository == 'meshtastic/Meshtastic-Android'
|
|
|
|
steps:
|
|
- name: Stale PR+Issues
|
|
uses: actions/stale@v11.0.0
|
|
with:
|
|
days-before-stale: 30
|
|
stale-issue-message: This issue has not had any comment or update in the last 30 days. If it is still relevant, please post update comments. If no comments are made, this issue will be closed in 7 days.
|
|
exempt-issue-labels: 'has sponsor,needs sponsor,help wanted,backlog,security issue,l10n,dependencies'
|
|
exempt-pr-labels: 'has sponsor,needs sponsor,help wanted,backlog,security issue,l10n,dependencies'
|
|
operations-per-run: 100
|