Skip to content

Commit a940e0f

Browse files
committed
Update
1 parent 0306350 commit a940e0f

14 files changed

Lines changed: 12 additions & 12 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/orchestrations/release-orchestrator.yml renamed to .github/orchestrations/release-orchestrator.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
# Manage version
100100
version:
101101
name: Version Management
102-
uses: ./.github/workflows/orchestrations/version-operations.yml
102+
uses: ./.github/orchestrations/version-operations.yml
103103
with:
104104
operation: 'update'
105105
release_type: ${{ inputs.release_type }}
@@ -112,7 +112,7 @@ jobs:
112112
changelog:
113113
name: Generate Changelog
114114
needs: [get-commits, version]
115-
uses: ./.github/workflows/orchestrations/generate-changelog.yml
115+
uses: ./.github/orchestrations/generate-changelog.yml
116116
with:
117117
commit_shas: ${{ needs.get-commits.outputs.commit_shas }}
118118
release_type: ${{ inputs.release_type }}
@@ -186,7 +186,7 @@ jobs:
186186
build:
187187
name: Build and Test
188188
needs: [version, generate-api-clients]
189-
uses: ./.github/workflows/orchestrations/build-and-test.yml
189+
uses: ./.github/orchestrations/build-and-test.yml
190190
with:
191191
run_tests: true
192192
fail_on_test_failure: false
@@ -195,7 +195,7 @@ jobs:
195195
release:
196196
name: Create GitHub Release
197197
needs: [version, changelog, generate-api-clients, build]
198-
uses: ./.github/workflows/orchestrations/create-release.yml
198+
uses: ./.github/orchestrations/create-release.yml
199199
with:
200200
release_type: ${{ inputs.release_type }}
201201
version: ${{ needs.version.outputs.new_version }}
File renamed without changes.
File renamed without changes.

.github/workflows/triggers/alpha-release.yml renamed to .github/workflows/alpha-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: Alpha Testing
3939
needs: [validate-secrets]
4040
if: ${{ !contains(github.event.head_commit.message, '🔄 Update version') && !contains(github.event.head_commit.message, '🤖 Update API clients') && !contains(github.event.head_commit.message, 'Alpha release') && !contains(github.event.head_commit.message, '🚀') && !contains(github.event.head_commit.message, 'smart-on-fhir-proxy-releaser') }}
41-
uses: ./.github/workflows/orchestrations/testing-strategy.yml
41+
uses: ./.github/orchestrations/testing-strategy.yml
4242
with:
4343
test_stage: 'alpha'
4444
test_scope: 'unit'
@@ -48,7 +48,7 @@ jobs:
4848
# Only run if the last commit is not a release commit to avoid infinite loops
4949
if: ${{ !contains(github.event.head_commit.message, '🔄 Update version') && !contains(github.event.head_commit.message, '🤖 Update API clients') && !contains(github.event.head_commit.message, 'Alpha release') && !contains(github.event.head_commit.message, '🚀') && !contains(github.event.head_commit.message, 'smart-on-fhir-proxy-releaser') }}
5050
needs: [validate-secrets, alpha-testing]
51-
uses: ./.github/workflows/orchestrations/release-orchestrator.yml
51+
uses: ./.github/orchestrations/release-orchestrator.yml
5252
with:
5353
release_type: 'alpha'
5454
source_branch: 'develop'

.github/workflows/triggers/beta-release.yml renamed to .github/workflows/beta-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: Beta Testing
3939
needs: [validate-secrets]
4040
if: ${{ !contains(github.event.head_commit.message, '🔄 Update version') && !contains(github.event.head_commit.message, '🤖 Update API clients') && !contains(github.event.head_commit.message, 'Beta release') && !contains(github.event.head_commit.message, '🚀') && !contains(github.event.head_commit.message, 'smart-on-fhir-proxy-releaser') }}
41-
uses: ./.github/workflows/orchestrations/testing-strategy.yml
41+
uses: ./.github/orchestrations/testing-strategy.yml
4242
with:
4343
test_stage: 'beta'
4444
test_scope: 'all'
@@ -48,7 +48,7 @@ jobs:
4848
# Only run if the last commit is not a release commit to avoid infinite loops
4949
if: ${{ !contains(github.event.head_commit.message, '🔄 Update version') && !contains(github.event.head_commit.message, '🤖 Update API clients') && !contains(github.event.head_commit.message, 'Beta release') && !contains(github.event.head_commit.message, '🚀') && !contains(github.event.head_commit.message, 'smart-on-fhir-proxy-releaser') }}
5050
needs: [validate-secrets, beta-testing]
51-
uses: ./.github/workflows/orchestrations/release-orchestrator.yml
51+
uses: ./.github/orchestrations/release-orchestrator.yml
5252
with:
5353
release_type: 'beta'
5454
source_branch: 'test'
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)