This is an automated email from the ASF dual-hosted git repository.
Alanxtl pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git
from 387ea9adc Merge branch 'main' into develop
add 830dfbbb3 ci: fixes codeql ci fail (#3652)
add ffbbcc3d9 docs(triple): complete Triple Header/Error comments and unit
test coverage (#3649)
add 581b831ae docs(registry): complete Registry Options comments and unit
test cove⦠(#3653)
add a10df2f7e fix(router): preserve v3.0 condition flags (#3658)
add 419c84a4e modernize github ci
add 840949261 chore: simplify issue templates (#3659)
No new revisions were added by this update.
Summary of changes:
.github/ISSUE_TEMPLATE/#0_bug_report_zh.yml | 158 ----------------
.github/ISSUE_TEMPLATE/#1_feature_request_zh.yml | 94 ----------
.github/ISSUE_TEMPLATE/#2_question_zh.yml | 107 -----------
.github/ISSUE_TEMPLATE/#3_proposal_zh.yml | 47 -----
.github/ISSUE_TEMPLATE/#4_discussion_zh.yml | 26 ---
.github/ISSUE_TEMPLATE/0_bug_report.yml | 165 ++---------------
.github/ISSUE_TEMPLATE/1_feature_request.yml | 62 +------
.github/ISSUE_TEMPLATE/2_question.yml | 104 +----------
.github/ISSUE_TEMPLATE/3_proposal.yml | 47 -----
.github/ISSUE_TEMPLATE/4_discussion.yml | 26 ---
.github/actions/setup-go/action.yml | 12 ++
.github/actions/setup-tools/action.yml | 11 ++
.github/pull_request_template.md | 3 +-
.github/workflows/codeql-analysis.yml | 36 +---
.github/workflows/github-actions.yml | 88 +++------
.github/workflows/riscv-build.yml | 32 ++--
.github/workflows/tools.yml | 107 +++++++++++
.gitignore | 1 +
Makefile | 117 +++++++-----
cluster/router/condition/dynamic_router.go | 2 +-
cluster/router/condition/router_test.go | 68 +++++++
protocol/triple/triple_protocol/error.go | 2 +
protocol/triple/triple_protocol/error_test.go | 101 ++++++++++
protocol/triple/triple_protocol/header.go | 14 +-
protocol/triple/triple_protocol/header_test.go | 133 +++++++++++++
registry/options.go | 42 +++++
registry/options_test.go | 226 +++++++++++++++++++----
27 files changed, 841 insertions(+), 990 deletions(-)
delete mode 100644 .github/ISSUE_TEMPLATE/#0_bug_report_zh.yml
delete mode 100644 .github/ISSUE_TEMPLATE/#1_feature_request_zh.yml
delete mode 100644 .github/ISSUE_TEMPLATE/#2_question_zh.yml
delete mode 100644 .github/ISSUE_TEMPLATE/#3_proposal_zh.yml
delete mode 100644 .github/ISSUE_TEMPLATE/#4_discussion_zh.yml
delete mode 100644 .github/ISSUE_TEMPLATE/3_proposal.yml
delete mode 100644 .github/ISSUE_TEMPLATE/4_discussion.yml
create mode 100644 .github/actions/setup-go/action.yml
create mode 100644 .github/actions/setup-tools/action.yml
create mode 100644 .github/workflows/tools.yml