Skip to content

Update project stats #1870

Update project stats

Update project stats #1870

on:
schedule:
- cron: 0 14 * * *
workflow_dispatch:
inputs:
apply-changes:
description: 'Whether workflow should generate a pull request for these changes'
required: false
default: '1'
name: Update project stats
jobs:
updateProjectStats:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@7bae1d00b5db9166f4f0fc47985a3a5702cb58f0
with:
bundler-cache: true
cache-version: 0
- name: Run script to update stats for all projects
run: bundle exec ruby scripts/update_stats.rb
env:
GITHUB_TOKEN: ${{ secrets.SHIFTBOT_TOKEN }}
APPLY_CHANGES: ${{ inputs.apply-changes }}