fregante/daily-version-action

Avoid releasing version on certain commits

Open

#16 创建于 2021年1月16日

在 GitHub 查看
 (2 评论) (0 反应) (0 负责人)JavaScript (5 fork)github user discovery
enhancementgood first issuehelp wanted

仓库指标

Star
 (22 star)
PR 合并指标
 (PR 指标待抓取)

描述

Some commits don't need to be released as their own version, so there could be a way to ignore them. For example this can be done via ignore an option that excludes commits based on their title (like this other action) or simply by detecting [norelease] in the commit description

Current logic:

if HEAD is tagged
	exit

Desired logic:

commit = HEAD
while commit is ignored
	commit = commit.parent

if commit is tagged
	exit

贡献者指南