Skip to content

.github/workflows/main.yml #4215

.github/workflows/main.yml

.github/workflows/main.yml #4215

Workflow file for this run

name: Get parks data
on:
push:
schedule:
- cron: "37 * * * *"
jobs:
notify:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Notify backcountry subscriptions
run: make notify
env:
GMAIL_APP_PASSWORD: ${{ secrets.GMAIL_APP_PASSWORD }}
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "[email protected]"
git add -A
timestamp=$(date -u)
git commit -m "Latest data: ${timestamp}" || exit 0
git push