Skip to content

Download MLJ Cheatsheet #771

Download MLJ Cheatsheet

Download MLJ Cheatsheet #771

Workflow file for this run

name: Download MLJ Cheatsheet
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/mlj_cheatsheet.md https://raw.githubusercontent.com/JuliaAI/MLJ.jl/dev/docs/src/mlj_cheatsheet.md
- name: Commit changes
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add src/lib/Data/mlj_cheatsheet.md
git commit -m "⬆️ Update MLJ cheatsheet from MLJ.jl"
git push