Obtain latest hearings data #923
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
name: Obtain latest hearings data | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '09 00,12 * * *' # 8.09AM and 8.09 PM GMT+8 | |
jobs: | |
hearings: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out this repo | |
uses: actions/checkout@v4.1.6 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PAT }} | |
- name: Setup Babashka | |
uses: turtlequeue/setup-babashka@v1.6.0 | |
with: | |
babashka-version: 1.3.190 | |
- name: Fetch latest data | |
run: bb --main input.hearings.get_hearings | |
- name: Commit and push if it changed | |
run: |- | |
git config user.name "Automated update" | |
git config user.email "actions@users.noreply.github.com" | |
git add -A | |
timestamp=$(TZ='Asia/Singapore' date) | |
git commit -m "Latest hearings data: ${timestamp}" || exit 0 | |
git pull --rebase | |
git push |