FHIR Schema supported packages #385
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: FHIR Schema supported packages | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Babashka | |
run: curl -s https://raw.githubusercontent.com/babashka/babashka/master/install | bash | |
- name: Execute bb task | |
run: bb -m fhir-schema-doc | |
- name: Commit and push | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add modules-1/profiling-and-validation/fhir-schema-validator/supported-implementation-guides.md | |
git commit -m "Update supported-implementation-guides.md" -a | |
git push |