Initial commit
Some checks failed
Cache OSM data / cache (push) Failing after 4m18s

This commit is contained in:
Charles P. 2024-07-06 16:04:18 +02:00
commit ab92a39ccb
Signed by untrusted user who does not match committer: charlesp
GPG key ID: 1708D5CC4095E76B
8 changed files with 702 additions and 0 deletions

22
action.yml Normal file
View 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 }}