Skip to content

Commit

Permalink
Merge pull request #105 from Turbo87/bots
Browse files Browse the repository at this point in the history
Ignore dependency update bots by default
  • Loading branch information
Turbo87 committed Jun 17, 2018
2 parents e4987cc + 018698c commit 1286ac8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,14 @@ export function fromPath(rootPath: string, options: Partial<Configuration> = {})
}

if (!ignoreCommitters) {
ignoreCommitters = [];
ignoreCommitters = [
"dependabot-bot",
"dependabot[bot]",
"greenkeeperio-bot",
"greenkeeper[bot]",
"renovate-bot",
"renovate[bot]",
];
}

return {
Expand Down

0 comments on commit 1286ac8

Please sign in to comment.