Download MLJ ModelDescriptors.toml #1933
This file contains hidden or 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: Download MLJ ModelDescriptors.toml | |
| on: | |
| schedule: | |
| - cron: "0 */6 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| download-and-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 | |
| - name: Create directory if it does not exist | |
| run: mkdir -p src/lib/Data | |
| - name: Download file | |
| run: | | |
| curl -o src/lib/Data/ModelDescriptors.toml https://raw.githubusercontent.com/JuliaAI/MLJ.jl/dev/docs/ModelDescriptors.toml | |
| - name: Commit changes | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git config --global user.email "actions@users.noreply.github.com" | |
| git add src/lib/Data/ModelDescriptors.toml | |
| echo "Checking to see if there is something to commit. " | |
| if ! git diff --staged --quiet; then | |
| git commit -m "⬆️ Update ModelDescriptors from MLJ.jl" | |
| git push | |
| else | |
| echo "No changes to commit. Skipping." | |
| fi |