Skip to content

Commit

Permalink
Merge branch 'main' into fix-reviewers-lilli
Browse files Browse the repository at this point in the history
  • Loading branch information
csilvers authored Nov 14, 2024
2 parents 52c0976 + c9b7069 commit 13c938e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup-files/NOTIFIED
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
6 changes: 6 additions & 0 deletions setup-files/REVIEWERS
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 13c938e

Please sign in to comment.