Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/cd-emr-athena.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: cd-emr-athena

on:
workflow_dispatch:
inputs:
bal_central_environment:
description: Ballerina Central Environment
type: choice
options:
- STAGE
- DEV
- PROD
required: true

jobs:
build:
uses: ./.github/workflows/build-executor.yml
secrets: inherit
with:
working_dir: ./emr/athena
bal_central_environment: ${{ inputs.bal_central_environment }}
21 changes: 21 additions & 0 deletions .github/workflows/cd-emr-cerner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: cd-emr-cerner

on:
workflow_dispatch:
inputs:
bal_central_environment:
description: Ballerina Central Environment
type: choice
options:
- STAGE
- DEV
- PROD
required: true

jobs:
build:
uses: ./.github/workflows/build-executor.yml
secrets: inherit
with:
working_dir: ./emr/cerner
bal_central_environment: ${{ inputs.bal_central_environment }}
21 changes: 21 additions & 0 deletions .github/workflows/cd-emr-epic.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: cd-emr-epic

on:
workflow_dispatch:
inputs:
bal_central_environment:
description: Ballerina Central Environment
type: choice
options:
- STAGE
- DEV
- PROD
required: true

jobs:
build:
uses: ./.github/workflows/build-executor.yml
secrets: inherit
with:
working_dir: ./emr/epic
bal_central_environment: ${{ inputs.bal_central_environment }}
8 changes: 8 additions & 0 deletions emr/athena/Ballerina.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[package]
org = "ballerinax"
name = "health.clients.fhir.athenahealth"
version = "1.0.0"
distribution = "2201.12.9"
#visibility = "private"
icon = "./icons/Icon_athena.png"
keywords=["Healthcare", "FHIR", "athenahealth", "athena-fhir-connector"]
Loading
Loading