2021-02-05 21:20:02 +11:00
|
|
|
name: topo update (push)
|
2021-01-29 19:03:47 +11:00
|
|
|
|
|
|
|
on:
|
2021-02-05 21:20:02 +11:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2021-01-29 19:03:47 +11:00
|
|
|
paths:
|
2021-02-05 21:20:02 +11:00
|
|
|
- 'website/data/library_services_information.csv'
|
2021-01-29 20:12:08 +11:00
|
|
|
|
2021-01-29 21:10:39 +11:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2021-01-29 19:03:47 +11:00
|
|
|
jobs:
|
|
|
|
auto-topo-updater:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
2021-02-05 21:20:02 +11:00
|
|
|
ref: ${{ github.head_ref }}
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2021-01-29 19:03:47 +11:00
|
|
|
- name: Merge CSV to TopoJSON
|
|
|
|
run: |
|
|
|
|
python3 ./.github/scripts/merge_csv_to_topojson.py
|
|
|
|
|
|
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
|
|
with:
|
2021-02-02 18:10:48 +11:00
|
|
|
commit_message: merge csv data to topo
|
2021-02-06 12:12:15 +11:00
|
|
|
commit_author: Library Map Bot <librarymap@hugh.run>
|