Converting the original YAML files to JSON for the Datahub (created by valevo) #7
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: YAML2JSON | |
run-name: "Converting the original YAML files to JSON for the Datahub (created by ${{ github.actor }})" | |
on: [push] | |
jobs: | |
convert: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "branch = ${{ github.ref }}; repository = ${{ github.repository }}" | |
- run: echo "workspace = ${{ github.workspace }}" | |
- name: List files in the repository | |
run: | | |
python ${{ github.workspace }}/scripts/test_actions.py | |
- run: echo "🍏 This job's status is ${{ job.status }}." |