Skip to content

Commit 08067d2

Browse files
committed
Refactor PR validation workflow to improve formatting check and remove PR title validation step
1 parent c40f16d commit 08067d2

1 file changed

Lines changed: 1 addition & 18 deletions

File tree

.github/workflows/pr-validation.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,4 @@ jobs:
3333
run: dotnet test --configuration Release --no-build --verbosity normal
3434

3535
- name: Check formatting
36-
run: dotnet format --verify-no-changes || echo "Code formatting issues detected. Run 'dotnet format' locally."
37-
38-
- name: PR title validation
39-
uses: amannn/action-semantic-pull-request@v5
40-
env:
41-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42-
with:
43-
types: |
44-
feat
45-
fix
46-
docs
47-
style
48-
refactor
49-
perf
50-
test
51-
build
52-
ci
53-
chore
36+
run: dotnet format style --no-restore --verify-no-changes

0 commit comments

Comments
 (0)