Ingest - 📁 ArcGIS Feature Server Updates #70
This file contains hidden or 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: Ingest - 📁 ArcGIS Feature Server Updates | |
| on: | |
| schedule: | |
| # Weekly Cron job | |
| - cron: "0 0 * * 0" | |
| workflow_dispatch: | |
| inputs: | |
| dev_image: | |
| description: "Use dev image specific to this branch? (If exists)" | |
| type: boolean | |
| required: true | |
| default: false | |
| dev_bucket: | |
| description: "dev bucket to use in place of recipes. If name of bucket is 'de-dev-a' simply put 'a'" | |
| type: string | |
| required: false | |
| jobs: | |
| dataloading: | |
| uses: ./.github/workflows/ingest_multiple.yml | |
| secrets: inherit | |
| with: | |
| datasets: |- | |
| dcp_cscl_commonplace | |
| dcp_cscl_complex | |
| dcp_waterfront_access_map_wpaa | |
| dcp_waterfront_access_map_pow | |
| dcp_wrp_recognized_ecological_complexes | |
| dcp_wrp_special_natural_waterfront_areas | |
| nysdec_lands | |
| nysdec_natural_heritage_communities | |
| nysdec_priority_lakes | |
| nysdec_priority_shorelines | |
| nysdec_priority_estuaries | |
| nysdec_priority_streams | |
| nysdec_state_facility_permits | |
| nysdec_tidal_wetlands | |
| nysdec_title_v_facility_permits | |
| nysparks_historicplaces | |
| nysparks_parks | |
| nysshpo_historic_buildings_points | |
| nysshpo_historic_buildings_polygons | |
| nysshpo_archaeological_buffer_areas | |
| usnps_parks | |
| dev_bucket: ${{ inputs.dev_bucket }} | |
| dev_image: ${{ inputs.dev_image }} | |
| latest: true | |
| create_issue: ${{ github.event_name == 'schedule' }} | |
| label: ${{ github.workflow }} |