public_library_map/.github/workflows/update-topo-on-push.yml
Hugh Rundle 459f0b22d0 add default username to Actions
- avoids adding GitHub usernames instead of names when adding automated commits e.g. updating the name file.
Also cleaned up contributors.txt
2021-02-06 12:12:15 +11:00

30 lines
616 B
YAML

name: topo update (push)
on:
push:
branches:
- 'master'
paths:
- 'website/data/library_services_information.csv'
workflow_dispatch:
jobs:
auto-topo-updater:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Merge CSV to TopoJSON
run: |
python3 ./.github/scripts/merge_csv_to_topojson.py
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: merge csv data to topo
commit_author: Library Map Bot <librarymap@hugh.run>