[PR #768] [MERGED] enhance & bugfix #1034

Closed
opened 2026-03-03 01:07:23 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/certimate-go/certimate/pull/768
Author: @fudiwei
Created: 6/5/2025
Status: Merged
Merged: 6/9/2025
Merged by: @fudiwei

Base: mainHead: main


📝 Commits (8)

📊 Changes

30 files changed (+401 additions, -150 deletions)

View changed files

📝 internal/domain/workflow.go (+15 -13)
📝 internal/pkg/core/deployer/providers/baiducloud-appblb/baiducloud_appblb.go (+1 -0)
📝 internal/pkg/core/deployer/providers/baiducloud-blb/baiducloud_blb.go (+1 -0)
📝 internal/pkg/core/deployer/providers/wangsu-cdn/wangsu_cdn.go (+7 -2)
📝 internal/repository/certificate.go (+0 -19)
📝 internal/workflow/dispatcher/invoker.go (+1 -0)
📝 internal/workflow/node-processor/apply_node.go (+22 -17)
📝 internal/workflow/node-processor/condition_node.go (+1 -1)
📝 internal/workflow/node-processor/const.go (+1 -0)
📝 internal/workflow/node-processor/context.go (+12 -37)
📝 internal/workflow/node-processor/deploy_node.go (+13 -6)
📝 internal/workflow/node-processor/monitor_node.go (+5 -4)
📝 internal/workflow/node-processor/notify_node.go (+27 -2)
📝 internal/workflow/node-processor/processor.go (+0 -1)
📝 internal/workflow/node-processor/upload_node.go (+10 -7)
ui/src/components/workflow/WorkflowEditModal.tsx (+122 -0)
📝 ui/src/components/workflow/node/ApplyNodeConfigForm.tsx (+2 -6)
📝 ui/src/components/workflow/node/ConditionNodeConfigForm.tsx (+2 -2)
📝 ui/src/components/workflow/node/DeployNodeConfigForm.tsx (+2 -4)
📝 ui/src/components/workflow/node/DeployNodeConfigFormWangsuCDNConfig.tsx (+1 -1)

...and 10 more files

📄 Description

该 PR 包含以下内容变更:

  • feat: 支持复制工作流。
  • feat: 工作流支持配置跳过通知节点。关闭 #471
  • feat: 部署到网宿云 CDN 时支持泛域名加速域名。关闭 #764
  • fix: 关闭 #766
  • fix: 关闭 #769

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/certimate-go/certimate/pull/768 **Author:** [@fudiwei](https://github.com/fudiwei) **Created:** 6/5/2025 **Status:** ✅ Merged **Merged:** 6/9/2025 **Merged by:** [@fudiwei](https://github.com/fudiwei) **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (8) - [`252da5d`](https://github.com/certimate-go/certimate/commit/252da5d7e1f30e1cc5ee2ea1bbac89d6287b4cdd) refactor(ui): clean code - [`59935df`](https://github.com/certimate-go/certimate/commit/59935df6b15fb80451b1fea71ae8a1bd196b5337) fix: #766 - [`d58109f`](https://github.com/certimate-go/certimate/commit/d58109f4bef3a4933065b11469dbbe637607e613) feat: support wildcard domains on deployment to wangsu cdn - [`bd26dfe`](https://github.com/certimate-go/certimate/commit/bd26dfecb80eb6a790cb125ac8f4797b7e5b886b) feat: improve workflow log - [`84a3f33`](https://github.com/certimate-go/certimate/commit/84a3f3346ad88c9707c8161b88904005fa331040) fix: #769 - [`24fe824`](https://github.com/certimate-go/certimate/commit/24fe82475721134412317c7c1a03943b689b4806) feat: allow skip notify nodes when all previous nodes were skipped - [`5e6d729`](https://github.com/certimate-go/certimate/commit/5e6d72963176eccda83433134d79ec9b51d220b7) fix: #769 - [`a750592`](https://github.com/certimate-go/certimate/commit/a750592eb58f11a90a1a414ba2d373fcea5282c8) feat: duplicate workflow ### 📊 Changes **30 files changed** (+401 additions, -150 deletions) <details> <summary>View changed files</summary> 📝 `internal/domain/workflow.go` (+15 -13) 📝 `internal/pkg/core/deployer/providers/baiducloud-appblb/baiducloud_appblb.go` (+1 -0) 📝 `internal/pkg/core/deployer/providers/baiducloud-blb/baiducloud_blb.go` (+1 -0) 📝 `internal/pkg/core/deployer/providers/wangsu-cdn/wangsu_cdn.go` (+7 -2) 📝 `internal/repository/certificate.go` (+0 -19) 📝 `internal/workflow/dispatcher/invoker.go` (+1 -0) 📝 `internal/workflow/node-processor/apply_node.go` (+22 -17) 📝 `internal/workflow/node-processor/condition_node.go` (+1 -1) 📝 `internal/workflow/node-processor/const.go` (+1 -0) 📝 `internal/workflow/node-processor/context.go` (+12 -37) 📝 `internal/workflow/node-processor/deploy_node.go` (+13 -6) 📝 `internal/workflow/node-processor/monitor_node.go` (+5 -4) 📝 `internal/workflow/node-processor/notify_node.go` (+27 -2) 📝 `internal/workflow/node-processor/processor.go` (+0 -1) 📝 `internal/workflow/node-processor/upload_node.go` (+10 -7) ➕ `ui/src/components/workflow/WorkflowEditModal.tsx` (+122 -0) 📝 `ui/src/components/workflow/node/ApplyNodeConfigForm.tsx` (+2 -6) 📝 `ui/src/components/workflow/node/ConditionNodeConfigForm.tsx` (+2 -2) 📝 `ui/src/components/workflow/node/DeployNodeConfigForm.tsx` (+2 -4) 📝 `ui/src/components/workflow/node/DeployNodeConfigFormWangsuCDNConfig.tsx` (+1 -1) _...and 10 more files_ </details> ### 📄 Description 该 PR 包含以下内容变更: - **feat**: 支持复制工作流。 - **feat**: 工作流支持配置跳过通知节点。关闭 #471 - **feat**: 部署到网宿云 CDN 时支持泛域名加速域名。关闭 #764 - **fix**: 关闭 #766 - **fix**: 关闭 #769 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 01:07:23 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/certimate#1034
No description provided.