Close out dormant discussions #37
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 out dormant discussions | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 01:23 every day | |
- cron: '23 1 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
discussions: write | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899 | |
- name: Bundle install | |
run: bundle install | |
- name: Close out discussions | |
run: .github/actions/close | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |