Skip to content

Commit

Permalink
[bot]: Add stale-bot
Browse files Browse the repository at this point in the history
  • Loading branch information
zarubaf committed Oct 19, 2023
1 parent d2d178d commit 60bf767
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Copyright 2023 OpenHW Group
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0

name: 'Close stale issues and PRs'
# on:
# schedule:
# - cron: '30 1 * * *'
on: workflow_dispatch

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
debug-only: true
stale-issue-label: Status:Stale
stale-pr-label: Status:Stale
stale-issue-message: |
👋 Hi there!
This issue seems inactive. Need more help? Feel free to update us. If there are no updates within the next few days, we'll go ahead and close this issue. 😊
stale-pr-message: |
👋 Hi there!
This pull request seems inactive. Need more help or have updates? Feel free to let us know. If there are no updates within the next few days, we'll go ahead and close this PR. 😊
days-before-stale: 30
days-before-close: 5
exempt-issue-labels: Type:Task,Type:Enhancement,Type:Bug
exempt-all-milestones: true
start-date: '2023-09-01T00:00:00Z'

0 comments on commit 60bf767

Please sign in to comment.