From 426c6450baf652a0d34a9bed9e7ea6228e244aaa Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Mon, 16 Oct 2023 23:25:02 +0300 Subject: [PATCH] :construction_worker: Fix the CI trigger criteria --- .github/workflows/helm.yml | 3 ++- .github/workflows/release.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index 83594a7dd..abfb3c5d6 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -1,7 +1,8 @@ on: push: + # Sequence of patterns matched against refs/tags tags: - - '*' + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 name: Release Helm Charts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfe0b0b38..58603318f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,8 @@ on: push: + # Sequence of patterns matched against refs/tags tags: - - '*' + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 name: Release