Skip to content

Commit

Permalink
feat: add stale workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tochemey committed Sep 7, 2024
1 parent ee47a22 commit f6979e4
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Stale
jobs:
Stale:
runs-on: ubuntu-latest
name: Run stale
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Stale
id: stale
uses: sonia-corporation/stale@2.5.0
with:
pull-request-stale-label: stale-label
pull-request-days-before-stale: 14
pull-request-ignore-all-assignees: true
pull-request-delete-branch-after-close: true
pull-request-stale-comment: |
This pull is inactive since 14 days!
If there is no activity, it will be closed in two weeks.
issue-stale-label: inactive
issue-ignore-all-assignees: true
issue-days-before-stale: 14
issue-stale-comment: |
This issue is inactive since 14 days!
If there is no activity, it will be closed in two weeks.
issue-days-before-close: 14
issue-add-labels-after-close: |
closed-due-to-inactivity

0 comments on commit f6979e4

Please sign in to comment.