vehicle_type_id can be omitted when count=0 (#527) #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Pull Request in GBFS website repo when gbfs.md is modified | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'gbfs.md' | |
jobs: | |
create-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: npm install | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
with: | |
token: ${{ secrets.GENERIC_ACTION_REPO_SCOPE }} | |
path: 'docs/specification/reference.md' | |
committer: MobilityData IO <[email protected]> | |
commit-message: 'gbfs.md file in GBFS repo has been modified' | |
branch: 'gbfs-md-updated' | |
add-path:: | | |
docs/specification/reference.md | |
title: 'gbfs.md file modified' | |
body: 'Automatically created this pull request after gbfs.md file has been modified in the https://github.com/MobilityData/gbfs repo.' | |
reviewers: josee-sabourin |