11
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2026-04-06 09:36:53 +00:00

feat: add commitlint action

This commit is contained in:
Wagner Santos 2019-10-01 20:09:37 -03:00
parent 083d21442d
commit 478fbaff69
7 changed files with 2185 additions and 0 deletions

43
package.json Normal file
View file

@ -0,0 +1,43 @@
{
"name": "commitlint-github-action",
"version": "1.0.0",
"description": "commitlint github action",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wagoid/commitlint-github-action.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/wagoid/commitlint-github-action",
"dependencies": {
"@actions/core": "1.1.1",
"@actions/exec": "1.0.1",
"@actions/github": "1.1.0",
"@commitlint/cli": "8.1.0",
"@commitlint/config-angular": "8.2.0",
"@commitlint/config-conventional": "7.6.0",
"@commitlint/config-lerna-scopes": "8.2.0",
"@commitlint/config-patternplate": "8.2.0",
"@commitlint/format": "8.2.0",
"@commitlint/lint": "8.2.0",
"@commitlint/load": "8.2.0",
"@commitlint/read": "8.2.0",
"chalk": "2.4.2",
"commitlint-config-jira": "1.0.9",
"conventional-changelog-lint-config-canonical": "1.0.0"
},
"devDependencies": {
"husky": "3.0.7",
"prettier": "1.18.2",
"pretty-quick": "1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}