-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: (owl-bot) add ignore files list to refreshConfigs function #5007
Conversation
@@ -31,6 +31,9 @@ import {shouldIgnoreRepo} from './should-ignore-repo'; | |||
|
|||
type ListReposResponse = Endpoints['GET /orgs/{org}/repos']['response']; | |||
|
|||
export const CONFIG_PATHS_TO_SKIP = [ | |||
'packages/gapic-node-templating/templates/bootstrap-templates/.OwlBot.yaml', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a comment explaining why this path is being skipped.
...badConfig.errorMessages, | ||
].join('\n* ') | ||
); | ||
if (!CONFIG_PATHS_TO_SKIP.includes(badConfig.path)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When the path is skipped, please write a log statement citing the path that was skipped and why.
Fixes #4980