Skip to content

Commit 5f2c94e

Browse files
committed
Fix: Prevent code style workflow from running on tags
1 parent a649c2d commit 5f2c94e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@ name: fix-php-code-style-issues
22

33
on:
44
push:
5+
branches:
6+
- "**"
57
paths:
6-
- '**.php'
7-
- 'pint.json'
8+
- "**.php"
9+
- "pint.json"
810
pull_request:
911
paths:
10-
- '**.php'
11-
- 'pint.json'
12+
- "**.php"
13+
- "pint.json"
1214

1315
jobs:
1416
php-code-styling:

0 commit comments

Comments
 (0)