Skip to content

Commit

Permalink
Add workflow to label, comment and close stale pull requests
Browse files Browse the repository at this point in the history
Co-authored-by: Kamil Śliwak <cameel2@gmail.com>
Co-authored-by: Daniel Kirchner <daniel@ekpyron.org>
  • Loading branch information
3 people committed Sep 22, 2022
1 parent 37597f9 commit e276736
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/stale-pull-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Check stale pull requests

on:
workflow_dispatch:
schedule:
- cron: '0 12 * * *'

permissions:
issues: read
pull-requests: write

env:
BEFORE_STALE: 14
BEFORE_CLOSE: 7

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v5
with:
debug-only: true
# disable issues
days-before-issue-stale: -1
days-before-issue-close: -1
stale-pr-message: |
This pull request is stale because it has been open for ${{ env.BEFORE_STALE }} days with no activity.
It will be closed in ${{ env.BEFORE_CLOSE }} days unless the `stale` label is removed.
close-pr-message: |
This pull request was closed due to a lack of activity for ${{ env.BEFORE_CLOSE }} days after it was stale.
stale-pr-label: stale
close-pr-label: closed-due-inactivity
days-before-pr-stale: ${{ env.BEFORE_STALE }}
days-before-pr-close: ${{ env.BEFORE_CLOSE }}
exempt-pr-labels: 'external contribution'
exempt-draft-pr: true
exempt-all-milestones: true
remove-stale-when-updated: true
operations-per-run: 60

0 comments on commit e276736

Please sign in to comment.