Skip to content

Commit

Permalink
Add GitHub actions file to trigger FHIR IG build
Browse files Browse the repository at this point in the history
For the purpose of iterating on template updates
  • Loading branch information
robeastwood-agency committed Aug 17, 2023
1 parent 2d94d56 commit 2edc6c1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-test-ig.yml
Original file line number Diff line number Diff line change
@@ -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"}}'

0 comments on commit 2edc6c1

Please sign in to comment.