Skip to content

Commit

Permalink
Merge pull request customink#11 from customink/bot/manual-update-glob…
Browse files Browse the repository at this point in the history
…al-workflow-master-7zjkev

Update stale.yml config
  • Loading branch information
paulslaby committed Feb 12, 2024
2 parents 7d72b46 + 6b469cb commit d9b45f0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Bump/Close inactive PRs
on:
schedule:
- cron: "0 5 * * *"

jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-pr-stale: 30
days-before-pr-close: 90

stale-pr-label: "stale"
stale-pr-message: "This PR is open and inactive for 30 days. Merging PRs open for a long time is error-prone. Please proceed to merging or make a comment to keep it open. You can also prevent PRs from being tagged stale ot closed with 'keep-open' tag. If there is no activity in 90 days, this PR will be closed"
close-pr-message: "This PR was closed because it has been inactive for 90 days since being marked as stale."

exempt-pr-labels: "keep-open,dependabot,dependencies"

repo-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d9b45f0

Please sign in to comment.