Skip to content

Commit 18e6d81

Browse files
committed
lint
1 parent 7df0ddb commit 18e6d81

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/_containerTemplate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Login Container Registry
7575
uses: docker/login-action@v3.0.0
7676
id: registry_login
77-
# if: github.event_name != 'pull_request'
77+
if: github.event_name != 'pull_request'
7878
with:
7979
registry: ${{ inputs.registry_uri }}
8080
username: ${{ secrets.USER_NAME }}
@@ -101,7 +101,7 @@ jobs:
101101
with:
102102
context: ${{ inputs.working_directory }}
103103
file: ${{ inputs.working_directory }}/Dockerfile
104-
push: true # ${{ github.event_name != 'pull_request' }}
104+
push: ${{ github.event_name != 'pull_request' }}
105105
tags: ${{ steps.metadata.outputs.tags }}
106106
labels: ${{ steps.metadata.outputs.labels }}
107107
cache-from: type=gha

code/infra/function.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ resource "azapi_resource" "function" {
6969
storageAccountRequired = false
7070
vnetContentShareEnabled = true
7171
vnetImagePullEnabled = false # Set to 'true' when pulling image from private Azure Container Registry
72-
vnetRouteAllEnabled = true
72+
vnetRouteAllEnabled = true
7373
virtualNetworkSubnetId = azapi_resource.subnet_function.id
7474
siteConfig = {
7575
# autoHealEnabled = true

0 commit comments

Comments
 (0)