Skip to content

Commit 5d6b09b

Browse files
authored
Merge branch 'master' into cloudguard-integrations-terraform-azure-cloudguard-network-secu-0e3b886033d31ef23257358bf54799a24043dbe6
2 parents 35149e2 + 3d997d3 commit 5d6b09b

File tree

3 files changed

+23
-40
lines changed

3 files changed

+23
-40
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Delete Merged Branch
2+
3+
on:
4+
pull_request:
5+
types:
6+
- closed
7+
8+
jobs:
9+
delete_branch:
10+
if: github.event.pull_request.merged == true
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
with:
18+
ref: ${{ github.event.pull_request.base.ref }} # Checkout the target branch
19+
20+
- name: Delete source branch
21+
run: |
22+
git push origin --delete ${{ github.event.pull_request.head.ref }}

modules/management_new_vnet/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ module "example_module" {
2828
source = "CheckPointSW/cloudguard-network-security/azure//modules/management_new_vnet"
2929
version = "1.0.4"
3030
31+
3132
source_image_vhd_uri = "noCustomUri"
3233
resource_group_name = "checkpoint-mgmt-terraform"
3334
mgmt_name = "checkpoint-mgmt-terraform"

sonar-project.properties

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)