Skip to content

Create stale.yml (#4440) #2

Create stale.yml (#4440)

Create stale.yml (#4440) #2

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.

Check failure on line 1 in .github/workflows/stale.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/stale.yml

Invalid workflow file

invalid `cron` attribute "14 29 * * *"
#
# You can adjust the behaviour by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
on:
schedule:
- cron: '14 29 * * *'
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: 'Stale issue message'
stale-pr-message: 'Stale pull request message'
stale-issue-label: 'no-issue-activity'
stale-pr-label: 'no-pr-activity'
days-before-stale: 1
days-before-pr-close: 7