Skip to content

Misc DX improvements for contributors #833

Misc DX improvements for contributors

Misc DX improvements for contributors #833

Workflow file for this run

name: CI freshness
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci-freshness:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install Rust
uses: actions-rust-lang/[email protected]
- name: Generate docs.yml
run: |
cd .github/ci_generator
cargo run > docs.yml
mv docs.yml ../workflows
- name: Fail if anything changed
run: |
git add .
git diff --exit-code --cached || (echo "Please regenerate the docs.yml CI script" && exit 1)