Skip to content

Create example of skipping parameter types #6

Create example of skipping parameter types

Create example of skipping parameter types #6

name: Regenerate `README.md`
on:
push:
branches:
- 'main'
paths:
- '.github/workflows/regenerate_readme.yml'
- 'HEADER.md'
- 'docs/source/assets/logo.svg'
- 'docs/source/index.md'
- 'scripts/regenerate_readme.jl'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
- run: julia --color=yes scripts/regenerate_readme.jl
- run: |
git config user.name github-actions
git config user.email [email protected]
git diff --quiet || (git add . && git commit -m 'Regenerate `README.md`')
git push