Username update #39
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: Count datasets | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
create_gif: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: count | |
run: python3 tools/count_entries.py | |
- name: git pull | |
run: git pull | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update readme count | |
file_pattern: '*.md' |