mirror of
https://github.com/meshtastic/firmware.git
synced 2025-07-30 02:15:41 +00:00

Use new meshtastic/gh-action-firmware Action Co-authored-by: Ben Meadors <benmmeadors@gmail.com>
25 lines
502 B
YAML
25 lines
502 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@v9.1.0
|
|
with:
|
|
days-before-stale: 45
|
|
exempt-issue-labels: pinned,3.0
|
|
exempt-pr-labels: pinned,3.0
|