diff --git a/setup-files/NOTIFIED b/setup-files/NOTIFIED index 1b42511..bfa0568 100644 --- a/setup-files/NOTIFIED +++ b/setup-files/NOTIFIED @@ -7,6 +7,10 @@ Examples: # This rule will notify @owner1 on changes to all files # **/* @owner1 +# This rule will notify @owner1 on changes to all files, and the rule +# has a label "allfiles", which will be included in the github PR info. +# allfiles: **/* @owner1 + # This rule will notify @owner1 and @Org/team1 on changes to all .js files # **/*.js @owner1 @Org/team1 @@ -37,6 +41,9 @@ Regex Examples: # This rule will notify @owner1 on changes that include the word "gerald" # "/gerald/ig" @owner1 +# This rule will notify @owner1 on changes that include the word "gerald", and has a label "used_gerald", which will be included in the github PR info. +# used_gerald: "/gerald/ig" @owner1 + # This rule will notify @owner1 on changes that *add* the word "gerald" # "/^\+.*gerald/igm" @owner1 diff --git a/setup-files/REVIEWERS b/setup-files/REVIEWERS index 7a9b910..42f6eb0 100644 --- a/setup-files/REVIEWERS +++ b/setup-files/REVIEWERS @@ -7,6 +7,9 @@ Examples: # This rule will request @owner1 for review on changes to all files. This rule will also request @owner2 for a blocking review. # **/* @owner1 @owner2! +# This rule will request @owner1 for review on changes to all files, and the rule has a label "allfiles", which will be included in the github PR info. +# allfiles: **/* @owner1 + # This rule will request @owner1 and @Org/team1 for review on changes to all .js files # **/*.js @owner1 @Org/team1 @@ -37,6 +40,9 @@ Regex Examples: # This rule will request @owner1 for review on changes that include the word "gerald" # "/gerald/ig" @owner1 +# This rule will request @owner1 for review on changes that include the word "gerald", and has a label "used_gerald", which will be included in the github PR info. +# used_gerald: "/gerald/ig" @owner1 + # This rule will request @owner1 for review on changes that *add* the word "gerald" # "/^\+.*gerald/igm" @owner1