mirror of
https://github.com/meshtastic/web.git
synced 2026-06-11 06:55:16 -04:00
* Update inactive issue workflow schedule and settings * Update .github/workflows/inactive-issue.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
25 lines
840 B
YAML
25 lines
840 B
YAML
name: Close inactive issues
|
|
on:
|
|
schedule:
|
|
- cron: "0 */4 * * *" # every 4 hours
|
|
workflow_dispatch: # allow manual runs
|
|
jobs:
|
|
close-issues:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-issue-stale: 60
|
|
days-before-issue-close: 14
|
|
stale-issue-label: "stale"
|
|
stale-issue-message: "This issue is stale because it has been open for 60 days with no activity."
|
|
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
|
|
days-before-pr-stale: -1
|
|
days-before-pr-close: -1
|
|
only-issue-labels: "Bug"
|
|
remove-stale-when-updated: true
|