Skip to content

👻 Stale

👻 Stale #190

Workflow file for this run

---
name: "👻 Stale"
on:
schedule:
- cron: "0 8 * * *"
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
jobs:
stale:
name: "🧹 Clean up stale issues and PRs"
runs-on: ubuntu-latest
steps:
- name: "🚀 Run stale"
uses: actions/stale@v9
with:
# 📋 https://github.com/actions/stale#all-options
exempt-all-pr-assignees: true
exempt-all-pr-milestones: true
remove-stale-when-updated: true
days-before-issue-stale: 30
days-before-pr-stale: 45
days-before-issue-close: 5
days-before-pr-close: 10
stale-issue-label: "stale 👻"
exempt-issue-labels: "no-stale 🔒,help-wanted 👥"
stale-issue-message: >
There hasn't been any activity on this issue recently, and in order to prioritize active issues, it will be
marked as stale. Please make sure to update to the latest version and check if that solves the issue. Let us
know if that works for you by leaving a 👍 Because this issue is marked as stale, it will be closed and
locked in 7 days if no further activity occurs. Thank you for your contributions!
close-issue-message: "This issue was closed because it has been stalled for 5 days with no activity."
stale-pr-label: "stale 👻"
exempt-pr-labels: "no-stale 🔒"
stale-pr-message: >
There hasn't been any activity on this pull request recently, and in order to prioritize active work, it has
been marked as stale. This PR will be closed and locked in 7 days if no further activity occurs. Thank you
for your contributions!
close-pr-message: "This PR was closed because it has been stalled for 10 days with no activity."