In regex, I think I want .*\..*
-> Match all files with any characters, single dot, all characters.
In unix filenaming pattern matching, is there a way to do this as *.*
matches filenames with two . in them. It will match release_4.18.1 file when I only want it to match all the release_4.18 files.
I am using github branch protection name matching so I can't do fancy commands either in bash or anything :(