Skip to content

Commit c6e0a6e

Browse files
committed
Update workflows
1 parent 2c5c25b commit c6e0a6e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/functionApp.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,13 @@ on:
66
paths:
77
- "**.py"
88
- "code/function/**"
9-
- ".github/workflows/functionApp.yml"
109

1110
pull_request:
1211
branches:
1312
- main
1413
paths:
1514
- "**.py"
1615
- "code/function/**"
17-
- ".github/workflows/functionApp.yml"
1816

1917
jobs:
2018
function_test:
@@ -28,7 +26,7 @@ jobs:
2826
uses: ./.github/workflows/_functionAppDeployTemplate.yml
2927
name: "Function App Deploy"
3028
needs: [function_test]
31-
# if: github.event_name == 'push' || github.event_name == 'release'
29+
if: github.event_name == 'push' || github.event_name == 'release'
3230
with:
3331
environment: "dev"
3432
python_version: "3.10"

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: ./.github/workflows/_terraformApplyTemplate.yml
4242
name: "Terraform Apply"
4343
needs: [terraform_plan_dev]
44-
# if: github.event_name == 'push' || github.event_name == 'release'
44+
if: github.event_name == 'push' || github.event_name == 'release'
4545
with:
4646
environment: "dev"
4747
terraform_version: "1.4.6"

0 commit comments

Comments
 (0)