From 5ff67117e3d7921c1b4a1ca68f11ce6b749e3dbc Mon Sep 17 00:00:00 2001 From: Joshua Martin Date: Thu, 26 Sep 2024 12:45:15 +1000 Subject: [PATCH] Added build-test-ig github workflow config. --- .github/workflows/build-test-ig.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build-test-ig.yml diff --git a/.github/workflows/build-test-ig.yml b/.github/workflows/build-test-ig.yml new file mode 100644 index 0000000..24a30dc --- /dev/null +++ b/.github/workflows/build-test-ig.yml @@ -0,0 +1,21 @@ +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"}}' + \ No newline at end of file