ChristopherSchultz commented on code in PR #1008: URL: https://github.com/apache/tomcat/pull/1008#discussion_r3334737183
########## .asf.yaml: ########## @@ -0,0 +1,20 @@ +github: + rulesets: + - name: "Default Branch Protection" + type: branch + branches: + includes: + - "~DEFAULT_BRANCH" + - "release/*" + - "rel/*" + - "11.0.x" Review Comment: It looks like we might be able to do this with a quasi-regex like this: `[0-9]*` which just means "any branch name starting with a number". It might be a little dangerous if we forget and create a branch like "1st-try-fix-that-bug" and then we are stuck with it forever. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
