feat: return empty result on no tag

This commit is contained in:
BoYanZh 2024-11-13 19:10:26 -05:00
parent 3dea5ee2fb
commit 1637d129b9
No known key found for this signature in database
GPG Key ID: CA088E6D9284F870
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,8 @@ func GetWorkflowBadge(ctx *context.Context) {
}
if len(tags) != 0 {
tag = tags[0].Name
} else {
tag = "" // return empty result on no tag
}
ref = fmt.Sprintf("refs/tags/%s", tag)
case tag != "":