Update VDL Ground Stations #32323
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake | |
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
name: Update VDL Ground Stations | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/update-vdl-ground-stations.yml | |
- scripts/convert_vdl2gs_to_json | |
schedule: | |
- cron: '35 * * * *' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
- name: Convert the CSV source and save output as JSON | |
run: ruby scripts/convert_vdl2gs_to_json csv/vdl/ground-stations.csv json/vdl/ground-stations.json | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
if: github.event_name != 'pull_request' | |
with: | |
author_name: Airframes.io | |
author_email: [email protected] | |
message: "Update VDL Ground Stations - json/vdl/ground-stations.json" | |
add: "*.*json" | |
fetch: false | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |