Merge remote-tracking branch 'origin/main'

This commit is contained in:
高大 2026-01-29 16:45:39 +08:00
commit d6cd0f003b
2 changed files with 5 additions and 1 deletions

View File

@ -12,7 +12,7 @@ main_repository:
monitor:
poll_interval: 10 # 轮询间隔(秒)
enabled_repos: [] # 空数组表示监听所有仓库,或指定具体仓库名称列表
watch_tags: true # 是否监听 tag 变化(打 tag 时触发部署)
watch_tags: false # 是否监听 tag 变化(打 tag 时触发部署)
tag_pattern: "v*" # 监听的 tag 模式,支持通配符(如 v*、release-*
# 部署配置

View File

@ -82,4 +82,8 @@ public class DockWithGPSVO implements Serializable {
@Schema(description = "经度")
private Double longitude;
/** 电量 */
@Schema(description = "电量百分比")
private Integer capacity_percent;
}