update script #13
This file contains 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: CI | |
on: | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get data | |
env: | |
IUCNREDLIST_TOKEN: ${{ secrets.IUCNREDLIST_TOKEN }} | |
run: make data | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "GitHub Action" | |
git config --global user.email "[email protected]" | |
git add -A . | |
if git diff-index --quiet HEAD --; then | |
echo "No changes to commit" | |
else | |
git commit -m "chore: 🆕 update dataset" | |
git push | |
fi | |
describe: | |
runs-on: ubuntu-latest | |
needs: [update] | |
steps: | |
- name: Install frictionless | |
run: pip install frictionless | |
- name: Describe | |
run: frictionless describe https://raw.githubusercontent.com/datonic/threatened-animal-species/main/datapackage.yaml --stats |