This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature/COR-1255-create-workflow-for-acceptance-environment (#4641)
* feature(devops): create workflow for acceptance environment Part of: COR-1255 * feature(devops): add hotfix/* to the trigger branches Part of: COR-1255 * feature(devops): add and update documentation on the CI procedures Part of: COR-1255 --------- Co-authored-by: VWSCoronaDashboard25 <[email protected]>
- Loading branch information
1 parent
467bbdd
commit 104885f
Showing
2 changed files
with
50 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: CI-acceptance | ||
on: | ||
push: | ||
branches: | ||
- 'release/*' | ||
- 'hotfix/*' | ||
|
||
jobs: | ||
trigger-acceptance-build: | ||
environment: Acceptance | ||
name: Call Azure Pipeline | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Azure Pipelines Action | ||
uses: Azure/[email protected] | ||
with: | ||
azure-devops-project-url: https://dev.azure.com/${{ secrets.VWS_AZURE_ORGANIZATION_NAME }}/${{ secrets.VWS_AZURE_PROJECT_NAME }} | ||
azure-pipeline-name: ${{ secrets.VWS_AZURE_PIPELINE_NAME_ACC }} | ||
azure-devops-token: ${{ secrets.VWS_AZURE_DEVOPS_TOKEN }} | ||
azure-pipeline-variables: '{"FRONTEND_BRANCH": "${{ github.ref_name }}"}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters