From 770846a8921893b26657e9f7516dfd560bbe98ec Mon Sep 17 00:00:00 2001 From: Damon McCullough Date: Sat, 31 Jan 2026 11:57:46 -0500 Subject: [PATCH 1/2] drop undefined action input in the bash function, the version defaults to latest and that's what we want since the dataset was just ingested --- .github/workflows/developments_datasync.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/developments_datasync.yml b/.github/workflows/developments_datasync.yml index 7fc1fdaa8d..2fd8869bd5 100644 --- a/.github/workflows/developments_datasync.yml +++ b/.github/workflows/developments_datasync.yml @@ -89,7 +89,7 @@ jobs: - name: Load to Database run: | - ./devdb_datasync.sh import hpd_hny_units_by_building ${{ github.event.inputs.version }} + ./devdb_datasync.sh import hpd_hny_units_by_building ./devdb_datasync.sh import hpd_historical_units_by_building - name: Geocode From 9f708fca8b3b7c1d32ce618a1b4f338cf674ad29 Mon Sep 17 00:00:00 2001 From: Damon McCullough Date: Sat, 31 Jan 2026 23:11:25 -0500 Subject: [PATCH 2/2] use ingest and new BIS datasets for DevDB datasync --- .github/workflows/developments_datasync.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/developments_datasync.yml b/.github/workflows/developments_datasync.yml index 2fd8869bd5..06edf6da93 100644 --- a/.github/workflows/developments_datasync.yml +++ b/.github/workflows/developments_datasync.yml @@ -12,7 +12,7 @@ on: jobs: sync: - name: Sync HPD Data, DOB BIS Applications + name: Sync DOB BIS and HPD HNY runs-on: ubuntu-22.04 container: image: nycplanning/build-geosupport:latest @@ -21,8 +21,8 @@ jobs: strategy: matrix: dataset: - - dob_permitissuance - - dob_jobapplications + - dob_bis_permits + - dob_bis_applications - hpd_hny_units_by_building steps: - uses: actions/checkout@v4 @@ -42,7 +42,7 @@ jobs: run: ./bash/docker_container_setup.sh - name: Library Archive - run: library archive --name ${{ matrix.dataset }} --latest --s3 + run: python3 -m dcpy lifecycle ingest ingest ${{ matrix.dataset }} --latest --push geocode: name: Geocode HPD Data