Cleanup stale projects #284
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
on: | |
schedule: | |
- cron: 0 18 * * 0 | |
workflow_dispatch: | |
inputs: | |
apply-changes: | |
description: 'Whether workflow should generate a pull request for these changes' | |
required: false | |
default: '1' | |
name: Cleanup stale projects | |
jobs: | |
cleanupArchivedProjects: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@f26937343756480a8cb3ae1f623b9c8d89ed6984 | |
with: | |
bundler-cache: true | |
- name: Run script to cleanup inactive projects | |
run: bundle exec ruby scripts/cleanup_projects.rb | |
env: | |
GITHUB_TOKEN: ${{ secrets.SHIFTBOT_TOKEN }} | |
APPLY_CHANGES: ${{ inputs.apply-changes }} |