Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 2ad9c25

Browse files
authored
ci: reorder qa pipeline to shift commit check to last step (#273)
I think it's annoying to only see other tests if the commit message matches the format - besides the feedback, it's a good reminder for me to override the commit message while merging, but i want to have the results of other qa tests at hand than.
1 parent e5ac251 commit 2ad9c25

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/pipeline.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,6 @@ jobs:
4646
- name: Checkout
4747
uses: actions/checkout@v4
4848

49-
- name: Conventional Commit
50-
uses: ytanikin/[email protected]
51-
with:
52-
task_types: '["feat", "fix", "docs", "test", "ci", "style", "refactor", "perf", "chore", "revert"]'
53-
add_label: 'true'
54-
custom_labels: '{"feat": "feature", "fix": "bug", "docs": "documentation", "test": "test", "ci": "CI/CD", "style": "codestyle", "refactor": "refactor", "perf": "performance", "chore": "chore", "revert": "revert"}'
55-
5649
- name: Setup PHP
5750
uses: shivammathur/setup-php@v2
5851
with:
@@ -77,3 +70,10 @@ jobs:
7770

7871
- name: PHPStan
7972
run: vendor/bin/phpstan analyse
73+
74+
- name: Conventional Commit
75+
uses: ytanikin/[email protected]
76+
with:
77+
task_types: '["feat", "fix", "docs", "test", "ci", "style", "refactor", "perf", "chore", "revert"]'
78+
add_label: 'true'
79+
custom_labels: '{"feat": "feature", "fix": "bug", "docs": "documentation", "test": "test", "ci": "CI/CD", "style": "codestyle", "refactor": "refactor", "perf": "performance", "chore": "chore", "revert": "revert"}'

0 commit comments

Comments
 (0)