Skip to content

Mark stale issues and pull requests #289

Mark stale issues and pull requests

Mark stale issues and pull requests #289

Workflow file for this run

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
on:
schedule:
- cron: '0 23 */4 * *'
jobs:
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: |
'hey @{assignee},
It has been seen that you haven't responded to this issue since long ago,
Please update the tatus or reply to this message else will be assigned to someone else.'
@{author}, @{reviewer}'
stale-pr-message: |
'hey @{assignee},
It has been seen that you haven't responded to this issue since long ago,
Please update the tatus or reply to this message else will be assigned to someone else.
@{author}, @{reviewer}'
stale-issue-label: '🕸️STATUS : stale'
stale-pr-label: '🕸️STATUS : stale'