Skip to content

Commit

Permalink
ci: (DSO-2101) update docker image (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-nicasio authored Jul 3, 2024
1 parent b4205a1 commit cf1a155
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 33 deletions.
30 changes: 0 additions & 30 deletions .release-it.json

This file was deleted.

1 change: 0 additions & 1 deletion commitlint.config.js

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 59 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,64 @@
"commitlint": "^19.3.0",
"husky": "^9.0.11",
"release-it": "^17.2.0"
},
"npm": {
"publish": false
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"defaultIgnores": true,
"rules": {
"body-max-line-length": [
1,
"always"
]
}
},
"release-it": {
"github": {
"release": true,
"releaseName": "v${version}"
},
"git": {
"commitMessage": "chore: release v${version}",
"tagMatch": "v[0-9]*\\.[0-9]*\\.[0-9]*",
"tagName": "v${version}",
"getLatestTagFromAllRefs": true,
"tagExclude": "*[-]*",
"push": true,
"release": true,
"pushArgs": [
"--no-verify",
"--follow-tags",
"--force"
],
"commitArgs": [
"--no-verify"
]
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{"type": "feat","section": "Features"},
{"type": "fix","section": "Bug Fixes"},
{"type": "chore","section": "Miscellaneous"},
{"type": "docs","section": "Miscellaneous"},
{"type": "style","section": "Miscellaneous"},
{"type": "refactor","section": "Miscellaneous"},
{"type": "perf","section": "Miscellaneous"},
{"type": "test","section": "Miscellaneous"},
{"type": "build","section": "Miscellaneous"},
{"type": "revert","section": "Miscellaneous"},
{"type": "ci","section": "Miscellaneous"}
]
},
"infile": "CHANGELOG.md"
}
}
}
}

0 comments on commit cf1a155

Please sign in to comment.