Skip to content

Commit

Permalink
SNOW-760002: add stale issue clean bot (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-aling authored Apr 5, 2023
1 parent b161892 commit 7baaa1a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/stale_issue_bot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Close Stale Issues
on:
workflow_dispatch:
inputs:
staleDays:
required: true


jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
with:
close-issue-message: 'To clean up and re-prioritize bugs and feature requests we are closing all issues older than 6 months as of Apr 1, 2023. If there are any issues or feature requests that you would like us to address, please re-create them. For urgent issues, opening a support case with this link [Snowflake Community](https://community.snowflake.com/s/article/How-To-Submit-a-Support-Case-in-Snowflake-Lodge) is the fastest way to get a response'
days-before-issue-stale: ${{ inputs.staleDays }}
days-before-pr-stale: -1
# Stale issues are closed immediately
days-before-issue-close: 0
days-before-pr-close: -1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7baaa1a

Please sign in to comment.