.github/workflows/impresso-datalab.yml #1
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
on: [workflow_dispatch] | |
jobs: | |
hello_world_job: | |
runs-on: ubuntu-latest | |
name: Test this action | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: Skim file | |
id: skim | |
uses: c2dh/journal-of-digital-history-ipynb-skim-action@master | |
with: | |
notebook: 'notebooks/main.ipynb' | |
- name: commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
file_pattern: '*.ipynb' |