This is an automated email from the ASF dual-hosted git repository.
chaokunyang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fory.git
The following commit(s) were added to refs/heads/main by this push:
new 53452563d chore: skip auto release for tag starts with go (#3584)
53452563d is described below
commit 53452563dc8315712475324da01a2a7042812bfc
Author: Shawn Yang <[email protected]>
AuthorDate: Mon Apr 20 00:08:07 2026 +0800
chore: skip auto release for tag starts with go (#3584)
## Why?
## What does this PR do?
## Related issues
## AI Contribution Checklist
- [ ] Substantial AI assistance was used in this PR: `yes` / `no`
- [ ] If `yes`, I included a completed [AI Contribution
Checklist](https://github.com/apache/fory/blob/main/AI_POLICY.md#9-contributor-checklist-for-ai-assisted-prs)
in this PR description and the required `AI Usage Disclosure`.
- [ ] If `yes`, my PR description includes the required `ai_review`
summary and screenshot evidence of the final clean AI review results
from both fresh reviewers on the current PR diff or current HEAD after
the latest code changes.
## Does this PR introduce any user-facing change?
- [ ] Does this PR introduce any public API change?
- [ ] Does this PR introduce any binary protocol compatibility change?
## Benchmark
---
.github/workflows/release-compiler.yaml | 2 +-
.github/workflows/release-csharp.yaml | 2 +-
.github/workflows/release-dart.yaml | 2 +-
.github/workflows/release-javascript.yaml | 2 +-
.github/workflows/release-python.yaml | 2 +-
.github/workflows/release-rust.yaml | 2 +-
README.md | 2 ++
7 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/.github/workflows/release-compiler.yaml
b/.github/workflows/release-compiler.yaml
index b7f9b6134..66d55a846 100644
--- a/.github/workflows/release-compiler.yaml
+++ b/.github/workflows/release-compiler.yaml
@@ -29,7 +29,7 @@ permissions:
jobs:
publish-compiler:
runs-on: ubuntu-latest
- if: github.repository == 'apache/fory'
+ if: github.repository == 'apache/fory' && !startsWith(github.ref_name,
'go/fory')
steps:
- uses: actions/checkout@v5
diff --git a/.github/workflows/release-csharp.yaml
b/.github/workflows/release-csharp.yaml
index 7d392f175..1f58e544c 100644
--- a/.github/workflows/release-csharp.yaml
+++ b/.github/workflows/release-csharp.yaml
@@ -33,7 +33,7 @@ concurrency:
jobs:
publish-csharp:
runs-on: ubuntu-latest
- if: github.repository == 'apache/fory'
+ if: github.repository == 'apache/fory' && !startsWith(github.ref_name,
'go/fory')
env:
NUGET_SOURCE: https://api.nuget.org/v3/index.json
steps:
diff --git a/.github/workflows/release-dart.yaml
b/.github/workflows/release-dart.yaml
index 18e792fab..987fca0a6 100644
--- a/.github/workflows/release-dart.yaml
+++ b/.github/workflows/release-dart.yaml
@@ -33,7 +33,7 @@ concurrency:
jobs:
publish-dart:
runs-on: ubuntu-latest
- if: github.repository == 'apache/fory'
+ if: github.repository == 'apache/fory' && !startsWith(github.ref_name,
'go/fory')
permissions:
contents: read
id-token: write
diff --git a/.github/workflows/release-javascript.yaml
b/.github/workflows/release-javascript.yaml
index 359c1649e..a2883ebcf 100644
--- a/.github/workflows/release-javascript.yaml
+++ b/.github/workflows/release-javascript.yaml
@@ -33,7 +33,7 @@ concurrency:
jobs:
publish-npm:
runs-on: ubuntu-latest
- if: github.repository == 'apache/fory'
+ if: github.repository == 'apache/fory' && !startsWith(github.ref_name,
'go/fory')
steps:
- uses: actions/checkout@v5
diff --git a/.github/workflows/release-python.yaml
b/.github/workflows/release-python.yaml
index 0b810b6c7..7561989f9 100644
--- a/.github/workflows/release-python.yaml
+++ b/.github/workflows/release-python.yaml
@@ -31,7 +31,7 @@ permissions:
jobs:
publish-wheels:
name: Publish Wheels
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
+ if: ${{ github.event.workflow_run.conclusion == 'success' &&
!startsWith(github.event.workflow_run.head_branch, 'go/fory') }}
runs-on: ubuntu-latest
steps:
- name: Download all wheel artifacts
diff --git a/.github/workflows/release-rust.yaml
b/.github/workflows/release-rust.yaml
index f505223c3..0930a1d2d 100644
--- a/.github/workflows/release-rust.yaml
+++ b/.github/workflows/release-rust.yaml
@@ -29,7 +29,7 @@ permissions:
jobs:
publish-rust:
runs-on: ubuntu-latest
- if: github.repository == 'apache/fory'
+ if: github.repository == 'apache/fory' && !startsWith(github.ref_name,
'go/fory')
steps:
- uses: actions/checkout@v5
diff --git a/README.md b/README.md
index dce0905e6..b1e6c76e8 100644
--- a/README.md
+++ b/README.md
@@ -8,6 +8,8 @@
[](https://search.maven.org/#search|gav|1|g:"org.apache.fory"%20AND%20a:"fory-core")
[](https://crates.io/crates/fory)
[](https://pypi.org/project/pyfory/)
+[](https://www.npmjs.com/package/@apache-fory/core)
+[](https://pub.dev/packages/fory)
**Apache Fory™** is a blazingly-fast multi-language serialization framework
powered by **JIT compilation**, **zero-copy** techniques, and **advanced code
generation**, achieving up to **170x performance improvement** while
maintaining simplicity and ease of use.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]