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

Create close-features and close-bugs bot for runner issues #2909

Merged
merged 12 commits into from
Oct 27, 2023
Prev Previous commit
Next Next commit
Create close-features-bot.yml
  • Loading branch information
ruvceskistefan authored Sep 28, 2023
commit 56c57771a002a576f88ea4222474d145ede581f5
18 changes: 18 additions & 0 deletions .github/workflows/close-features-bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Close Features Bot
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # every monday at midnight
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
close-issue-message: "Thank you for your interest in the runner application and taking the time to provide your valuable feedback. We kindly ask you to redirect this feedback to the [GitHub Community Support Forum](https://github.com/orgs/community/discussions/categories/actions-and-packages) which our team actively monitors and would be a better place to start a discussion for new feature requests in GitHub Actions. For more information on this policy please [read our contribution guidelines](https://github.com/actions/runner#contribute). 😃"
exempt-issue-labels: "keep"
stale-issue-label: "actions-feature"
only-labels: "actions-feature"
days-before-stale: 0
days-before-close: 0
close-issue-reason: "completed"