9494 branch-name-check :
9595 name : Enforce Branch Name Convention
9696 if : success() || failure()
97+ continue-on-error : ${{ inputs.runall }}
9798 outputs :
9899 status : ${{ job.status }}
99100 runs-on : ubuntu-latest
@@ -112,11 +113,12 @@ jobs:
112113 echo " build-*, feat-*, fix-*, bugfix-*, hotfix-*, build-*, chore-*, ci-*, docs-*, perf-*, refactor-*, revert-*, style-*, test-*, sample-*, security-*, config-*, bugfix-*, hotfix-*"
113114 exit 1
114115 fi
115- continue-on-error : ${{ inputs.runall }}
116+
116117
117118 commitlint :
118119 runs-on : ubuntu-latest
119120 if : success() || failure()
121+ continue-on-error : ${{ inputs.runall }}
120122 outputs :
121123 status : ${{ job.status }}
122124 steps :
@@ -128,48 +130,51 @@ jobs:
128130 with :
129131 configFile : .commitlintrc.json
130132
131- - name : Setup .NET SDK (required for build command)
133+ - name : Setup .NET SDK (required for build command) qqqq remove me
132134 uses : actions/setup-dotnet@v4
133135 with :
134136 dotnet-version : ' 8.0.407'
135137
136138
137- - name : Force Failure for testing script
139+ - name : Force Failure for testing script qqqq remove me
138140 run : dotnet build NonExistentProject.csproj
139141
140- continue-on-error : ${{ inputs.runall }}
142+
141143
142144
143145 Unit-Tests :
144146 runs-on : ubuntu-latest
145147 if : success() || failure()
148+ continue-on-error : ${{ inputs.runall }}
146149 outputs :
147150 status : ${{ job.status }}
148151 steps :
149152 - name : See other project pipeline for Tests
150153 run : echo " See other project pipeline for Tests this is a placeholder"
151- continue-on-error : ${{ inputs.runall }}
154+
152155
153156
154157 E2E-Tests :
155158 runs-on : ubuntu-latest
156159 if : success() || failure()
160+ continue-on-error : ${{ inputs.runall }}
157161 outputs :
158162 status : ${{ job.status }}
159163 steps :
160164 - name : See other project pipeline for Tests
161165 run : echo " See other project pipeline for Tests this is a placeholder"
162- continue-on-error : ${{ inputs.runall }}
166+
163167
164168 Code-Coverage :
165169 runs-on : ubuntu-latest
166170 if : success() || failure()
171+ continue-on-error : ${{ inputs.runall }}
167172 outputs :
168173 status : ${{ job.status }}
169174 steps :
170175 - name : See other project pipeline for Tests
171176 run : echo " See other project pipeline for Tests this is a placeholder"
172- continue-on-error : ${{ inputs.runall }}
177+
173178
174179 Check-For-Fails :
175180 name : Check for failures
0 commit comments