Skip to content

Commit

Permalink
feat: implicitly disable snyk integrator by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tjsilver committed Jun 24, 2024
1 parent a7882cb commit 478ed42
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/repocop/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@ export async function main() {
nonPlaygroundStacks,
);

await sendUnprotectedRepo(repocopRules, config, repoLanguages);
if (config.snykIntegrationPREnabled) {
await sendUnprotectedRepo(repocopRules, config, repoLanguages);
}

await writeEvaluationTable(repocopRules, prisma);
if (config.enableMessaging) {
await sendPotentialInteractives(repocopRules, config);
Expand Down

0 comments on commit 478ed42

Please sign in to comment.