We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33c0340 commit 7532592Copy full SHA for 7532592
.github/workflows/schema-tests.yaml
@@ -42,3 +42,13 @@ jobs:
42
- name: Run tests
43
run: npm run test
44
45
+ - name: Check in changed JSON files
46
+ run: |
47
+ git config user.name ${GITHUB_ACTOR}
48
+ git config user.email ${PUSHER_EMAIL}
49
+ git add schemas/**/*.json
50
+ git diff-index --quiet HEAD schemas/**/*.json || git commit -m "converted JSON metaschemas"
51
+ git push
52
+ env:
53
+ CI: true
54
+ PUSHER_EMAIL: ${{ github.event.pusher.email }}
0 commit comments