Skip to content

Commit

Permalink
chore: update synth.py to exclude bot configs (#300)
Browse files Browse the repository at this point in the history
Exclude blunderbuss and codeowners from autosynth.

Fixes #299
  • Loading branch information
Simon Zeltser committed Jan 21, 2021
1 parent e096d74 commit 820c3b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Expand Up @@ -39,6 +39,7 @@ public static void setCurrentTraceId(String id) {
public static void clearTraceId() {
MDC.remove(TRACE_ID);
}

/**
* Get the Trace ID associated with any logging done by the current thread.
*
Expand Down
7 changes: 6 additions & 1 deletion synth.py
Expand Up @@ -18,4 +18,9 @@

AUTOSYNTH_MULTIPLE_COMMITS = True

java.common_templates()
java.common_templates(excludes=[
'.gitignore',
'.github/CODEOWNERS',
'.github/blunderbuss.yml',
'CONTRIBUTING.md',
])

0 comments on commit 820c3b7

Please sign in to comment.