This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch xuanwo/release-workflow-tags in repository https://gitbox.apache.org/repos/asf/opendal.git
commit a486769e1f7ded72f7c3126422836687c73d72eb Author: Xuanwo <[email protected]> AuthorDate: Tue Mar 31 18:03:58 2026 +0800 ci: scope release workflows to version tags --- .github/workflows/release_dart.yml | 2 +- .github/workflows/release_python.yml | 2 +- .github/workflows/release_rust.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_dart.yml b/.github/workflows/release_dart.yml index afac52c29..5660aa7ef 100644 --- a/.github/workflows/release_dart.yml +++ b/.github/workflows/release_dart.yml @@ -22,7 +22,7 @@ name: Release Dart Binding on: push: tags: - - "*" + - "v*" pull_request: branches: - main diff --git a/.github/workflows/release_python.yml b/.github/workflows/release_python.yml index 2d6bdb844..e0a785ed3 100644 --- a/.github/workflows/release_python.yml +++ b/.github/workflows/release_python.yml @@ -20,7 +20,7 @@ name: Release Python Binding on: push: tags: - - "*" + - "v*" pull_request: branches: - main diff --git a/.github/workflows/release_rust.yml b/.github/workflows/release_rust.yml index fefab0605..7e7f6a74b 100644 --- a/.github/workflows/release_rust.yml +++ b/.github/workflows/release_rust.yml @@ -22,7 +22,7 @@ name: Release Rust Packages on: push: tags: - - "*" + - "v*" pull_request: branches: - main
