Skip to content

Commit 4d0538a

Browse files
committed
fix pull request action on release PRs
1 parent 5a70f78 commit 4d0538a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test_deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ on:
55
branches:
66
- master
77
- develop
8-
- "release/*" # otherwise PRs created by the PR action don't execute tests
8+
- "release/**" # otherwise PRs created by the PR action don't execute tests
99
tags:
1010
- "v*.*.*"
1111
pull_request:
1212
types: [opened, reopened, synchronize]
13+
branches:
14+
- "!release/**"
1315

1416
env:
1517
DEPENDENCY_CACHE_PREFIX: "v2"

0 commit comments

Comments
 (0)