@@ -113,60 +113,3 @@ jobs:
113113 exit 1
114114 fi
115115 continue-on-error : false
116-
117-
118- # branch-name-check:
119- # name: PR Check Enforce Branch Name Convention
120- # runs-on: ubuntu-latest
121- # steps:
122- # - name: Validate Branch Name
123- # run: |
124- # #BRANCH_NAME="${GITHUB_HEAD_REF}"
125- # BRANCH_NAME="${GITHUB_HEAD_REF:-${GITHUB_REF_NAME}}"
126- # echo "Validating branch name: $BRANCH_NAME"
127-
128- # if [[ "$BRANCH_NAME" =~ ^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test|sample|security|config|bugfix|hotfix)-[a-zA-Z0-9._/-]+$ ]] || [[ "$BRANCH_NAME" == "master" ]] || [[ "$BRANCH_NAME" == "Automatic_version_update_dependabot" ]]; then
129- # echo "✅ Branch name is valid"
130- # else
131- # echo "❌ Invalid branch name: $BRANCH_NAME"
132- # echo "Branch names must follow one of the allowed prefixes:"
133- # echo " build-*, feat-*, fix-*, bugfix-*, hotfix-*, build-*, chore-*, ci-*, docs-*, perf-*, refactor-*, revert-*, style-*, test-*, sample-*, security-*, config-*, bugfix-*, hotfix-*"
134- # exit 1
135- # fi
136- # continue-on-error: ${{ inputs.runall }}
137-
138- # commitlint:
139- # name: PR Check commitlint
140- # runs-on: ubuntu-latest
141- # steps:
142- # - uses: actions/checkout@v4
143- # with:
144- # fetch-depth: 0
145- # - uses: wagoid/commitlint-github-action@v5
146- # with:
147- # configFile: .commitlintrc.json
148- # continue-on-error: ${{ inputs.runall }}
149-
150- # Unit-Tests:
151- # name: PR Check Unit Tests
152- # runs-on: ubuntu-latest
153- # steps:
154- # - name: See other project pipeline for Tests
155- # run: echo " See other project pipeline for Tests this is a placeholder"
156- # continue-on-error: ${{ inputs.runall }}
157-
158- # E2E-Tests:
159- # name: PR Check E2E Tests
160- # runs-on: ubuntu-latest
161- # steps:
162- # - name: See other project pipeline for Tests
163- # run: echo " See other project pipeline for Tests this is a placeholder"
164- # continue-on-error: ${{ inputs.runall }}
165-
166- # Code-Coverage:
167- # name: PR Check Code Coverage
168- # runs-on: ubuntu-latest
169- # steps:
170- # - name: Code Coverage
171- # run: echo "TODO Code Coverage"
172- # continue-on-error: ${{ inputs.runall }}
0 commit comments