5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 08:06:54 +00:00
commitlint-github-action/package.json
Wagner Santos 23cd801837 feat: add ability to run commitlint on events that are not pull requests
For any event that is not of type `pull_request`, we consider there will be a `GITHBU_SHA` defined and run lint against only this specific commit
sha.
This supports not only events of type `pull` but also other events that provide us a `GITHBU_SHA`, like `check_suite`.
2019-10-15 10:23:56 -03:00

43 lines
1.2 KiB
JSON

{
"name": "commitlint-github-action",
"version": "1.1.1",
"description": "commitlint github action",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"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/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-config-jira": "1.0.9",
"conventional-changelog-lint-config-canonical": "1.0.0",
"git-raw-commits": "2.0.2"
},
"devDependencies": {
"conventional-changelog-cli": "2.0.23",
"husky": "3.0.7",
"prettier": "1.18.2",
"pretty-quick": "1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}