Skip to content

Commit

Permalink
Chore: integrate lalaps
Browse files Browse the repository at this point in the history
  • Loading branch information
pustovitDmytro committed Dec 18, 2021
1 parent 0888eee commit dd4f238
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
<<: *cache-defaults
- run:
name: Create Release
command: "[ -z ${CIRCLE_SKIP_DEPLOY+x} ] && npm run semantic-release || echo 'job skipped'"
command: if [ -z ${CIRCLE_SKIP_DEPLOY+x} ]; then npm run semantic-release;else echo 'job skipped';fi

workflows:
version: 2
Expand Down
31 changes: 31 additions & 0 deletions .lalapsrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"timezone": "Europe/Kiev",
"branchPrefix": "lalaps",
"labels": [ "dependencies", "security" ],
"schedule": [
"before 7:00 am every 10 days starting on the 5th day"
],
"verbosity": 0,
"commitMessageFix": "Chore: fixes npm audit vulnerabilities",
"commitMessagePartialFix": "Chore: fixes some npm audit vulnerabilities",
"rules": [
{
"advisory": "npm",
"automerge": true,
"commitMessageFix": "Fix: fixes npm audit vulnerabilities",
"commitMessagePartialFix": "Fix: fixes some npm audit vulnerabilities",
"production": true,
"branch": "npm-production"
},
{
"advisory": "npm",
"automerge": true,
"branch": "npm"
},
{
"advisory": "npm",
"force": true,
"branch": "npm-force"
}
]
}

0 comments on commit dd4f238

Please sign in to comment.