Skip to content

Commit

Permalink
Create stale.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludy87 committed Oct 12, 2023
1 parent e79a40e commit 4d45f28
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Stale

on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- name: X days stale issues
uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 30
days-before-close: 7
remove-stale-when-updated: true
stale-issue-label: "stale"
labels-to-remove-when-stale: "check for Bug,in progress"
exempt-issue-labels: "pinned,Bug: Confirmed!,check for Bug,wait"
stale-issue-message: >
This issue has been automatically marked as stale because it has
not had recent activity. It will be closed if no further activity
occurs. Thank you for your contributions.
close-issue-message: >
This issue has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
close-pr-message: >
This pull request has been automatically locked since there
has not been any recent activity after it was closed.
Please open a new issue for related bugs.
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}

0 comments on commit 4d45f28

Please sign in to comment.