This commit is contained in:
commit
ab92a39ccb
8 changed files with 702 additions and 0 deletions
22
action.yml
Normal file
22
action.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: 'GTFS Change Route Type'
|
||||
description: 'Change route type in a GTFS feed.'
|
||||
|
||||
inputs:
|
||||
osm_file:
|
||||
description: 'Path to OSM data file.'
|
||||
required: true
|
||||
data_file:
|
||||
description: 'Path to data file.'
|
||||
required: true
|
||||
output_file:
|
||||
description: 'Path to output file.'
|
||||
required: false
|
||||
default: 'output.json'
|
||||
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
args:
|
||||
- ${{ inputs.data_file }}
|
||||
- ${{ inputs.osm_file }}
|
||||
- ${{ inputs.output_file }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue