Download latest DHS shelter daily report #476
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: Download latest DHS shelter daily report | |
# | |
on: | |
schedule: | |
- cron: '47 1 * * *' | |
workflow_dispatch: | |
jobs: | |
scheduled: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out this repo | |
uses: actions/checkout@v4 | |
- name: Fetch latest data | |
run: |- | |
wget -O ./dhs_daily_report_unhoused_report_pdfs/temp_daily_report.pdf https://www1.nyc.gov/assets/dhs/downloads/pdf/dailyreport.pdf | |
- name: Add and commit | |
id: add_commit | |
uses: EndBug/[email protected] | |
with: | |
committer_name: Automated | |
committer_email: [email protected] | |
message: "Downloaded latest DHS PDF" |