Skip to content

litlfred triggered a GitHub Action #25

litlfred triggered a GitHub Action

litlfred triggered a GitHub Action #25

Workflow file for this run

# This is a simple workflow that runs the HL/ FHIR IG Publisher, which builds the IG in https://build.fhir.ig/ig/<repo>/index.html
name: Trigger HL7 FHIR Autobuild
run-name: ${{ github.actor }} triggered a GitHub Action
on:
workflow_call: # Reusable by other workflows
push:
pull_request:
workflow_dispatch:
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.ref }} - ${{ github.repository }}"
- run: |
curl --request POST \
--header 'content-type: application/json' \
--url https://us-central1-fhir-org-starter-project.cloudfunctions.net/ig-commit-trigger \
--data '{"ref": "${{ github.ref }}", "repository": {"full_name": "${{ github.repository }}"}}'