You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
Setting the label according to the branch name -
For example, my branch name is -> release/v0/v0.0.1
My desired label is -> v0.0.1
currently I am using my own action with a condition like this -> if [[ "$TARGET_BRANCH" =~ ^release/v[0-9]+/v[0-9]+\.[0-9]+\.[0-9]+$ ]];
and then I assigned the label like this -> LABEL_NAME=$(echo "$TARGET_BRANCH" | cut -d'/' -f 3)
The text was updated successfully, but these errors were encountered:
Description:
Setting the label according to the branch name -
For example, my branch name is ->
release/v0/v0.0.1
My desired label is ->
v0.0.1
currently I am using my own action with a condition like this ->
if [[ "$TARGET_BRANCH" =~ ^release/v[0-9]+/v[0-9]+\.[0-9]+\.[0-9]+$ ]];
and then I assigned the label like this ->
LABEL_NAME=$(echo "$TARGET_BRANCH" | cut -d'/' -f 3)
The text was updated successfully, but these errors were encountered: