I'm facing syntax issue
($CI_COMMIT_BRANCH =~ /^[A-Z][0-9][-_]SPRINT[0-9]+/i)
($CI_COMMIT_BRANCH =~ /^SPRINT[0-9]+/i)
($CI_COMMIT_BRANCH =~ /^[A-Z]SPRINT[0-9]+/i)]
(SPRINT-branch name) can you please help me to combine these split sequence into single command line
^([A-Z]([0-9][-_])?)?SPRINT[0-9]+R1_sprint3but you have to make the pattern case insensitive. See regex101.com/r/3pIpC5/1 or use a character class A-Za-z and all variations for the word sprint like^([A-Za-z]([0-9][-_])?)?[Ss][Pp][Rr][Ii][Nn][Tt][0-9]+/ior the longer pattern with all the variations?