File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
validation_dev :
22
- uses : ${{ github.repository }} /.github/workflows/templates/validation.yml@${{github.sha}}
22
+ uses : . /.github/workflows/templates/validation.yml
23
23
name : " Validation of IaC templates - Dev"
24
24
with :
25
25
environment : ${{ env.DEV_ENVIRONMENT_NAME }}
30
30
azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
31
31
32
32
deployment_dev :
33
- uses : ${{ github.repository }} /.github/workflows/templates/deployment.yml@${{github.sha}}
33
+ uses : . /.github/workflows/templates/deployment.yml
34
34
name : " Deployment of IaC templates - Dev"
35
35
needs : [ validation_dev ]
36
36
if : github.event_name == 'push'
Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
validation_test :
21
- uses : " ${{ github.repository }} /.github/workflows/templates/validation.yml@${{ github.ref_name }} "
21
+ uses : . /.github/workflows/templates/validation.yml
22
22
name : " Validation of IaC templates - Test"
23
23
with :
24
24
environment : ${{ env.TEST_ENVIRONMENT_NAME }}
29
29
azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
30
30
31
31
validation_prod :
32
- uses : " ${{ github.repository }} /.github/workflows/templates/validation.yml@${{ github.ref_name }} "
32
+ uses : . /.github/workflows/templates/validation.yml
33
33
name : " Validation of IaC templates - Prod"
34
34
needs : [ validation_test ]
35
35
with :
41
41
azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
42
42
43
43
deployment_test :
44
- uses : " ${{ github.repository }} /.github/workflows/templates/deployment.yml@${{ github.ref_name }} "
44
+ uses : . /.github/workflows/templates/deployment.yml
45
45
name : " Deployment of IaC templates - Test"
46
46
needs : [ validation_prod ]
47
47
if : github.event_name == 'release'
54
54
azure_credentials : ${{ secrets.AZURE_CREDENTIALS }}
55
55
56
56
deployment_prod :
57
- uses : " ${{ github.repository }} /.github/workflows/templates/deployment.yml@${{ github.ref_name }} "
57
+ uses : . /.github/workflows/templates/deployment.yml
58
58
name : " Deployment of IaC templates - Prod"
59
59
needs : [ deployment_test ]
60
60
if : github.event_name == 'release'
You can’t perform that action at this time.
0 commit comments