Skip to content

Commit

Permalink
chore: Telling owlbot to ignore these files & it's a monorepo (#1372)
Browse files Browse the repository at this point in the history
* chore: Telling owlbot to ignore these files & it's a monorepo
  • Loading branch information
ddixit14 authored and lqiu96 committed Feb 23, 2023
1 parent 40e49da commit 4356783
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 9 deletions.
18 changes: 13 additions & 5 deletions java-common-protos/owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,17 @@
s.move(library)

s.remove_staging_dirs()
java.common_templates(excludes=[
'README.md',
'samples/*',
'.github/workflows/samples.yaml',
'.kokoro/dependencies.sh',
java.common_templates(monorepo=True,excludes=[
".github/*",
".kokoro/*",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md",
"java.header",
"license-checks.xml",
"README.md",
"samples/*",
"renovate.json",
".gitignore"
])
17 changes: 13 additions & 4 deletions java-iam/owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,17 @@
s.move(library)

s.remove_staging_dirs()
java.common_templates(excludes=[
'README.md',
'samples/*',
'.github/workflows/samples.yaml',
java.common_templates(monorepo=True,excludes=[
".github/*",
".kokoro/*",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md",
"java.header",
"license-checks.xml",
"README.md",
"samples/*",
"renovate.json",
".gitignore"
])

0 comments on commit 4356783

Please sign in to comment.