2024-06-01 20:49:34 +00:00
|
|
|
# GTFS Change Route Type Action
|
2024-05-31 18:55:22 +00:00
|
|
|
### Usage
|
|
|
|
```yaml
|
2024-06-01 20:49:34 +00:00
|
|
|
name: GTFS Change Route Type
|
2024-05-31 18:19:56 +00:00
|
|
|
|
2024-05-31 18:55:22 +00:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
modify_routes:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Run GTFS Route Modifier
|
2024-06-01 20:49:34 +00:00
|
|
|
uses: gtfs-actions/change-route-type@main
|
2024-05-31 18:55:22 +00:00
|
|
|
with:
|
|
|
|
gtfs_file: 'path/to/your/gtfs.zip'
|
|
|
|
routes: '1:3,2:5'
|
|
|
|
```
|