Skip to content

Commit 7e235fa

Browse files
Removing Local Branch Name in All Pipelines
1 parent de9cc79 commit 7e235fa

File tree

5 files changed

+4
-11
lines changed

5 files changed

+4
-11
lines changed

.github/workflows/azure-dev-validation.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- vee-pipeline-fixes
87
permissions:
98
contents: read
109
id-token: write

.github/workflows/build-docker-images.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ on:
77
- dev
88
- demo
99
- hotfix
10-
- vee-pipeline-fixes
1110
pull_request:
1211
branches:
1312
- main
1413
- dev
1514
- demo
1615
- hotfix
17-
- vee-pipeline-fixes
1816
types:
1917
- opened
2018
- ready_for_review
@@ -41,5 +39,5 @@ jobs:
4139
password_secret: ${{ matrix.password_secret }}
4240
app_name: ${{ matrix.app_name }}
4341
dockerfile: ${{ matrix.dockerfile }}
44-
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' || github.ref_name == 'hotfix' || github.ref_name == 'vee-pipeline-fixes' }}
42+
push: ${{ github.ref_name == 'main' || github.ref_name == 'dev' || github.ref_name == 'demo' || github.ref_name == 'hotfix' }}
4543
secrets: inherit

.github/workflows/build-docker.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ jobs:
5959
echo "tagname=demo" >> $GITHUB_OUTPUT
6060
elif [[ "${{ github.ref_name }}" == "hotfix" ]]; then
6161
echo "tagname=hotfix" >> $GITHUB_OUTPUT
62-
elif [[ "${{ github.ref_name }}" == "vee-pipeline-fixes" ]]; then
63-
echo "tagname=vee-pipeline-fixes" >> $GITHUB_OUTPUT
6462
else
6563
echo "tagname=default" >> $GITHUB_OUTPUT
6664
fi

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ on:
66
types:
77
- completed
88
branches:
9-
- vee-pipeline-fixes
9+
- main
10+
- dev
11+
- demo
1012
schedule:
1113
- cron: '0 5,17 * * *' # Runs at 5:00 AM and 5:00 PM GMT
1214
workflow_dispatch:
@@ -123,8 +125,6 @@ jobs:
123125
IMAGE_TAG="dev"
124126
elif [[ "${{ env.BRANCH_NAME }}" == "demo" ]]; then
125127
IMAGE_TAG="demo"
126-
elif [[ "${{ env.BRANCH_NAME }}" == "vee-pipeline-fixes" ]]; then
127-
IMAGE_TAG="vee-pipeline-fixes"
128128
else
129129
IMAGE_TAG="latest"
130130
fi

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
- main
77
- dev
88
- demo
9-
- vee-pipeline-fixes
109
pull_request:
1110
types:
1211
- opened
@@ -17,7 +16,6 @@ on:
1716
- main
1817
- dev
1918
- demo
20-
- vee-pipeline-fixes
2119

2220
jobs:
2321
# frontend_tests:

0 commit comments

Comments
 (0)