We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfdc8e commit c3d2d70Copy full SHA for c3d2d70
1 file changed
.github/workflows/pull_request.yml
@@ -74,3 +74,19 @@ jobs:
74
ENABLE_ALERTS: false
75
secrets:
76
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }}
77
+
78
+ release_recovery:
79
+ needs: [get_issue_number, package_code, get_commit_id]
80
+ uses: ./.github/workflows/sam_release_code.yml
81
+ with:
82
+ ARTIFACT_BUCKET_PREFIX: ${{needs.tag_release.outputs.version_tag}}
83
+ STACK_NAME: fhir-validator
84
+ TARGET_ENVIRONMENT: recovery
85
+ BUILD_ARTIFACT: packaged_code
86
+ VERSION_NUMBER: fhir-validator-PR-${{ needs.get_issue_number.outputs.issue_number }}
87
+ COMMIT_ID: ${{ needs.get_commit_id.outputs.commit_id }}
88
+ LOG_LEVEL: INFO
89
+ LOG_RETENTION_DAYS: 30
90
+ ENABLE_ALERTS: true
91
+ secrets:
92
+ CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.RECOVERY_CLOUD_FORMATION_DEPLOY_ROLE }}
0 commit comments