Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub issue template polishing and stale issues action #2833

Merged
merged 2 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ labels: 'type: waiting-for-triage'
#### Current Behavior

<!-- A clear and concise description of the behavior.-->
<!-- See https://stackoverflow.com/help/minimal-reproducible-example for details of what a good minimum reproducible example is -->

<details>
<summary>Stack trace</summary>
Expand Down
15 changes: 0 additions & 15 deletions .github/ISSUE_TEMPLATE/Help_us.md

This file was deleted.

4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ contact_links:
url: https://github.com/lettuce-io/lettuce-core/discussions
about: Use GitHub discussions to discuss an enhancement proposal or if you have a question
- name: Questions
url: https://gitter.im/lettuce-io/Lobby
about: Please ask questions on Gitter or StackOverflow.
url: https://discord.gg/redis
about: Please ask questions on Discord or StackOverflow.
26 changes: 26 additions & 0 deletions .github/workflows/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *" # once a day at midnight

permissions: {}
jobs:
stale:
permissions:
issues: write # to close stale issues (actions/stale)
pull-requests: write # to close stale PRs (actions/stale)

runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue is marked stale. It will be closed in 30 days if it is not updated.'
tishun marked this conversation as resolved.
Show resolved Hide resolved
stale-pr-message: 'This pull request is marked stale. It will be closed in 30 days if it is not updated.'
days-before-stale: 365
days-before-close: 30
stale-issue-label: "stale"
tishun marked this conversation as resolved.
Show resolved Hide resolved
stale-pr-label: "stale"
operations-per-run: 10
remove-stale-when-updated: false
only-labels: "status: waiting-for-feedback"
Loading