Close Stale Discussions #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close Stale Discussions | |
on: | |
schedule: | |
- cron: '0 0 * * *' # Runs every day at midnight UTC | |
jobs: | |
close-stale-discussions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Close stale Q&A discussions | |
uses: steffen-karlsson/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
message: 'This discussion has automatically been closed due to inactivity. If this is still relevant, please open a new discussion.' | |
days-before-close: '30' | |
close-unanswered: 'true' | |
category: 'q-a' | |
close-reason: 'OUTDATED' | |
- name: Close stale Ideas discussions | |
uses: steffen-karlsson/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
message: 'This discussion has automatically been closed due to inactivity. If this is still relevant, please open a new discussion.' | |
days-before-close: '30' | |
close-unanswered: 'true' | |
category: 'ideas' | |
close-reason: 'OUTDATED' |