.github/workflows/make_tables.yml #508
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: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
test: | |
name: Make tables | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install csvkit | |
run: | | |
sudo apt-get update | |
sudo apt-get install csvkit | |
- uses: actions/checkout@v2 | |
with: | |
token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Run script make_tables.sh | |
run: bash ${GITHUB_WORKSPACE}/scripts/make_tables.sh | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
add: 'tables' | |
commit: '--allow-empty' | |
author_name: Knowledge Pixels Bot | |
author_email: [email protected] | |
message: 'Add tables' |