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 }}