mirror of
https://github.com/meshtastic/firmware
synced 2026-08-07 20:32:18 -04:00
26 lines
974 B
YAML
26 lines
974 B
YAML
name: process stale Issues and PR's
|
|
on:
|
|
schedule:
|
|
- cron: 0 6 * * *
|
|
workflow_dispatch: {}
|
|
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
actions: write
|
|
|
|
jobs:
|
|
stale_issues:
|
|
if: github.repository == 'meshtastic/firmware'
|
|
name: Close Stale Issues
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Stale PR+Issues
|
|
uses: actions/stale@v11
|
|
with:
|
|
days-before-stale: 45
|
|
stale-issue-message: This issue has not had any comment or update in the last month. If it is still relevant, please post update comments. If no comments are made, this issue will be closed automagically in 7 days.
|
|
close-issue-message: This issue has not had any comment since the last notice. It has been closed automatically. If this is incorrect, or the issue becomes relevant again, please request that it is reopened.
|
|
exempt-issue-labels: pinned,3.0,triaged,backlog
|
|
exempt-pr-labels: pinned,3.0,triaged,backlog
|