Skip to content

📌 Mark stale issues and pull requests #36

📌 Mark stale issues and pull requests

📌 Mark stale issues and pull requests #36

Workflow file for this run

name: 📌 Mark stale issues and pull requests
on:
schedule:
- cron: '0 7 * * *'
jobs:
mark-stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: '🤖 Bot: **Issue** has not seen activity in **30** days and will therefore be marked as stale. It will be closed in 7 days if no further response is found.'
stale-pr-message: '🤖 Bot: **PR** has not seen activity in **30** days and will therefore be marked as stale. It will be closed in 7 days if no further response is found.'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-stale: 30