Add GitHub actions file to trigger FHIR IG build #1
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: Build test FHIR IG | |
on: | |
push: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Manually trigger test FHIR IG | |
run: | | |
curl -X POST \ | |
--url "https://us-central1-fhir-org-starter-project.cloudfunctions.net/ig-commit-trigger" \ | |
--header "Content-type: application/json" \ | |
--data '{"ref": "refs/heads/main", "repository": {"full_name": "robeastwood-agency/test-fhir-ig-2"}}' | |