zone-competences-geojson/action.yml

23 lines
480 B
YAML
Raw Permalink Normal View History

2024-07-06 14:04:18 +00:00
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 }}