66 branch-name-check :
77 name : Enforce Branch Name Convention
88 runs-on : ubuntu-latest
9- # if: success() || failure()
109 steps :
1110 - name : Validate Branch Name
1211 run : |
@@ -22,63 +21,55 @@ jobs:
2221 echo " build-*, feat-*, fix-*, bugfix-*, hotfix-*, build-*, chore-*, ci-*, docs-*, perf-*, refactor-*, revert-*, style-*, test-*, sample-*, security-*, config-*, bugfix-*, hotfix-*"
2322 exit 1
2423 fi
25- # continue-on-error: true
2624
25+ # qqqq repo will need branch protection rules and PR Template
2726 commitlint :
2827 name : commitlint
29- # qqqq repo will need branch protection rules and PR Template
3028 runs-on : ubuntu-latest
31- # if: success() || failure()
3229 steps :
3330 - uses : actions/checkout@v4
3431 with :
3532 fetch-depth : 0
3633 - uses : wagoid/commitlint-github-action@v5
3734 with :
3835 configFile : .commitlintrc.json
39- # continue-on-error: true #we dont want to package etc if bad commits also pre-commit preferred
4036
4137
42- gitguardian-scan :
43- name : gitguardian
44- runs-on : ubuntu-latest
45- # if: success() || failure()
46- steps :
47- - uses : actions/checkout@v3
38+ # gitguardian-scan:
39+ # name: gitguardian
40+ # runs-on: ubuntu-latest
41+ # # if: success() || failure()
42+ # steps:
43+ # - uses: actions/checkout@v3
4844
49- - name : GitGuardian Scan
50- uses : GitGuardian/gg-shield-action@v1
51- env :
52- GITGUARDIAN_API_KEY : ${{ secrets.GITGUARDIAN_API_KEY }}
53- # continue-on-error: true # we dont want secrets going further and the keys need to be changed if this is triggered
45+ # - name: GitGuardian Scan
46+ # uses: GitGuardian/gg-shield-action@v1
47+ # env:
48+ # GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}
49+ # # continue-on-error: true # we dont want secrets going further and the keys need to be changed if this is triggered
5450
5551 Unit-Tests :
5652 name : todo unit tests
5753 runs-on : ubuntu-latest
58- # if: success() || failure()
5954 steps :
6055 - name : See other project pipeline for Tests
6156 run : echo "qqqq See other project pipeline for Tests this is a placeholder"
62- # continue-on-error: true
6357
6458
6559 E2E-Tests :
6660 name : todo e2e tests
6761 runs-on : ubuntu-latest
68- # if: success() || failure()
6962 steps :
7063 - name : See other project pipeline for Tests
7164 run : echo "qqqq See other project pipeline for Tests this is a placeholder"
72- # continue-on-error: true
65+
7366
7467 Code-Coverage :
7568 name : code coverage
7669 runs-on : ubuntu-latest
77- # if: success() || failure()
7870 steps :
7971 - name : Code Coverage
8072 run : echo "TODO Code Coverage"
81- # continue-on-error: true
8273
8374 # All-Checks-Passed:
8475 # name: all checks passed
9586 # - name: all checks passed steps
9687 # run: echo "allow all checks to run incase multiple fails then fail here"
9788
98-
89+ # wanted to do it like this
90+ # Code-Coverage:
91+ # name: code coverage
92+ # runs-on: ubuntu-latest
93+ # if: success() || failure()
94+ # steps:
95+ # - name: Code Coverage
96+ # run: echo "TODO Code Coverage"
97+ # continue-on-error: true
0 commit comments