Skip to content

Commit

Permalink
Merge pull request #35 from jimmyeao/jimmyeao-patch-2
Browse files Browse the repository at this point in the history
Update stale.yml
  • Loading branch information
jimmyeao authored Mar 3, 2024
2 parents 41f0bcf + e01d42c commit 21e6a53
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,22 @@ name: Mark stale issues and pull requests

on:
schedule:
- cron: '40 13 * * *'
- cron: "30 1 * * *"

jobs:
stale:

close-issues:
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'
- uses: actions/stale@v5
with:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 30 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
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 21e6a53

Please sign in to comment.