Skip to content

Commit d5c50ca

Browse files
fix(actions): skip release workflow on helm release (#109)
Signed-off-by: shubham <[email protected]>
1 parent 971b9d6 commit d5c50ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ on:
2525
- 'changelogs/**'
2626
- 'deploy/helm/**'
2727
- 'docs/**'
28+
- 'design/**'
2829
- 'LICENSE'
2930
- 'MAINTAINERS'
3031

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,10 @@ on:
1717
release:
1818
types:
1919
- 'created'
20-
tags:
21-
- 'v*'
2220

2321
jobs:
2422
csi-driver:
23+
if: contains(github.ref, 'tags/v')
2524
runs-on: ubuntu-latest
2625
steps:
2726
- name: Checkout

0 commit comments

Comments
 (0)