Skip to content

Commit

Permalink
Add release.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerard Setho committed Feb 11, 2022
1 parent 8491246 commit 8e6e012
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions release.config.js
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;

0 comments on commit 8e6e012

Please sign in to comment.