This repository was archived by the owner on Jun 15, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919
2020jobs :
2121 validation_dev :
22- uses : ${{ github.repository }} /.github/workflows/templates/validation.yml@${{github.sha}}
22+ uses : . /.github/workflows/templates/validation.yml
2323 name : " Validation of IaC templates - Dev"
2424 with :
2525 environment : ${{ env.DEV_ENVIRONMENT_NAME }}
3030 azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
3131
3232 deployment_dev :
33- uses : ${{ github.repository }} /.github/workflows/templates/deployment.yml@${{github.sha}}
33+ uses : . /.github/workflows/templates/deployment.yml
3434 name : " Deployment of IaC templates - Dev"
3535 needs : [ validation_dev ]
3636 if : github.event_name == 'push'
Original file line number Diff line number Diff line change 1818
1919jobs :
2020 validation_test :
21- uses : " ${{ github.repository }} /.github/workflows/templates/validation.yml@${{ github.ref_name }} "
21+ uses : . /.github/workflows/templates/validation.yml
2222 name : " Validation of IaC templates - Test"
2323 with :
2424 environment : ${{ env.TEST_ENVIRONMENT_NAME }}
2929 azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
3030
3131 validation_prod :
32- uses : " ${{ github.repository }} /.github/workflows/templates/validation.yml@${{ github.ref_name }} "
32+ uses : . /.github/workflows/templates/validation.yml
3333 name : " Validation of IaC templates - Prod"
3434 needs : [ validation_test ]
3535 with :
4141 azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
4242
4343 deployment_test :
44- uses : " ${{ github.repository }} /.github/workflows/templates/deployment.yml@${{ github.ref_name }} "
44+ uses : . /.github/workflows/templates/deployment.yml
4545 name : " Deployment of IaC templates - Test"
4646 needs : [ validation_prod ]
4747 if : github.event_name == 'release'
5454 azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
5555
5656 deployment_prod :
57- uses : " ${{ github.repository }} /.github/workflows/templates/deployment.yml@${{ github.ref_name }} "
57+ uses : . /.github/workflows/templates/deployment.yml
5858 name : " Deployment of IaC templates - Prod"
5959 needs : [ deployment_test ]
6060 if : github.event_name == 'release'
You can’t perform that action at this time.
0 commit comments