Skip to content

Commit 6f9e02b

Browse files
authored
Restrict check-code-quality 'push' workflow to develop and tags (#893)
1 parent 6f5e171 commit 6f9e02b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/check-code-quality.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ name: Check code quality
1616

1717
on:
1818
push:
19+
branches:
20+
- develop # pushes on the 'develop' branch
21+
tags:
22+
- '**' # new git tags (including hierarchical tags like v1.0/beta)
1923
pull_request:
2024
types: [opened, synchronize, reopened]
2125
# run this worflow only for code/test related changes (avoid it for documentation)

0 commit comments

Comments
 (0)