-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
actions: convert-examples-to-json (js version) (#2199)
- Loading branch information
1 parent
c5e9a8a
commit 52f4e1a
Showing
4 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: convert-examples-to-json | ||
|
||
# author: @MikeRalphson / @cebe | ||
# issue: https://github.com/OAI/OpenAPI-Specification/issues/1385 | ||
|
||
# | ||
# This workflow updates the *.json files in the examples/v3.x directories, | ||
# when the corresponding *.yaml files change. | ||
# JSON example files are automatically generated from the YAML example files. | ||
# Only the YAML files should be adjusted manually. | ||
# | ||
|
||
# run this on push to master | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
yaml2json: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 # checkout repo content | ||
|
||
- name: Install dependencies | ||
run: npm i | ||
|
||
- name: convert YAML examples to JSON | ||
run: find examples/v3* -type f -name "*.yaml" | xargs node scripts/yaml2json/yaml2json.js | ||
|
||
- name: git diff | ||
run: | | ||
git add examples/**/*.json | ||
git --no-pager -c color.diff=always diff --staged | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
branch-suffix: none | ||
branch: update-json-examples | ||
title: Update JSON example files | ||
commit-message: Update JSON example files | ||
body: | | ||
This pull request is automatically triggered by GitHub action `convert-examples-to-json`. | ||
The examples/v3.* YAML files have changed, so the JSON files are automatically being recreated. | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ | |
target | ||
atlassian-ide-plugin.xml | ||
node_modules/ | ||
package-lock.json | ||
Gemfile.lock |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env node | ||
|
||
'use strict'; | ||
|
||
const fs = require('fs'); | ||
const yaml = require('yaml'); | ||
|
||
function convert(filename) { | ||
console.log(filename); | ||
const s = fs.readFileSync(filename,'utf8'); | ||
let obj; | ||
try { | ||
obj = yaml.parse(s, {prettyErrors: true}); | ||
fs.writeFileSync(filename.replace('.yaml','.json'),JSON.stringify(obj,null,2),'utf8'); | ||
} | ||
catch (ex) { | ||
console.warn(' ',ex.message); | ||
process.exitCode = 1; | ||
} | ||
} | ||
|
||
if (process.argv.length<3) { | ||
console.warn('Usage: yaml2json {infiles}'); | ||
} | ||
else { | ||
for (let i=2;i<process.argv.length;i++) { | ||
convert(process.argv[i]); | ||
} | ||
} | ||
|