-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Gerard Setho
committed
Feb 11, 2022
1 parent
8491246
commit 8e6e012
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
const baseConfig = require('@quantum-sec/semantic-release-config/base'); | ||
|
||
for (let i = 0; i < baseConfig.plugins.length; i++) { | ||
if (baseConfig.plugins[i][0] === '@semantic-release/github') { | ||
baseConfig.plugins[i][1] = { | ||
successComment: false, | ||
failComment: false, | ||
assets: [{ | ||
path: 'quantum-sec.rules', | ||
label: 'Quantum Security Auditd rules' | ||
}] | ||
}; | ||
} | ||
} | ||
|
||
module.exports = baseConfig; |