mirror of
https://github.com/Brandon-Rozek/website-observations.git
synced 2025-10-09 02:21:14 +00:00
GH Action to sync iNaturalist Observations
This commit is contained in:
parent
d382a9411c
commit
3db68f43ad
2 changed files with 293 additions and 0 deletions
35
.github/workflows/refresh.yml
vendored
Normal file
35
.github/workflows/refresh.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
name: Sync Observations from iNaturalist
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: "12 23 * * *"
|
||||
|
||||
jobs:
|
||||
build_and_publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup git config
|
||||
run: |
|
||||
git config user.name "GitHub Actions Bot"
|
||||
git config user.email "<>"
|
||||
|
||||
- name: Grab latest observations
|
||||
run: |
|
||||
./.scripts/refreshobservations.py
|
||||
|
||||
- name: Check if there's any changes
|
||||
id: verify_diff
|
||||
run: |
|
||||
git diff --quiet . || echo "changed=true" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Commit and push
|
||||
if: steps.verify_diff.outputs.changed == 'true'
|
||||
run: |
|
||||
git add *.md
|
||||
git commit -m "New/Modified Observations"
|
||||
git push origin gh_actions
|
Loading…
Add table
Add a link
Reference in a new issue