Skip to content

Commit dab3a80

Browse files
committed
Add skip input for potential graph rebuild
1 parent 8afeea9 commit dab3a80

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-graph.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,19 @@ on:
66
branches:
77
- rm/**
88
workflow_dispatch:
9+
inputs:
10+
skip_otp_data_update:
11+
description: 'Skip otp_data update and use existing GTFS & OSM source data files in S3 bucket for graph build'
12+
default: false
13+
type: boolean
914

1015
env:
1116
CAC_OTP_DATA_BUCKET: 'cleanair-otp-data'
1217

1318
jobs:
1419
get-latest-otp-data:
1520
name: Fetch & process source data
21+
if: ${{ !inputs.skip_otp_data_update }}
1622
uses: ./.github/workflows/fetch-otp-data.yml
1723
secrets: inherit
1824
build-graph:

0 commit comments

Comments
 (0)