zone-competences-geojson/action.yml
Charles P. ab92a39ccb
Some checks failed
Cache OSM data / cache (push) Failing after 4m18s
Initial commit
2024-07-06 18:05:56 +02:00

23 lines
480 B
YAML

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