@toptal/davinci-ci 1.13.2-alpha-skip-pr-title-ticket-number-check-for-no-jira-prs-2.1263 → 1.13.3-alpha-allow-publishing-non-monorepo.1265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.13.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#970](https://github.com/toptal/davinci/pull/970) [`81238cdd`](https://github.com/toptal/davinci/commit/81238cdd0f8703a72744111969e408a43d1c0fac) Thanks [@ertrzyiks](https://github.com/ertrzyiks)! - skip ticket number check for PRs with no-jira label
|
|
8
|
+
|
|
3
9
|
## 1.13.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-ci",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.3-alpha-allow-publishing-non-monorepo.1265+428176f",
|
|
4
4
|
"description": "Continuos integrations tools for frontend projects",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@commitlint/cli": "^12.1.4",
|
|
34
34
|
"@commitlint/config-conventional": "^12.1.4",
|
|
35
|
-
"@toptal/davinci-cli-shared": "1.3.5-alpha-
|
|
35
|
+
"@toptal/davinci-cli-shared": "1.3.5-alpha-allow-publishing-non-monorepo.1265+428176f",
|
|
36
36
|
"danger": "^10.6.4",
|
|
37
37
|
"markdown-table": "^2.0.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "428176ff193a627caeb5974c4177510a95f662e4"
|
|
40
40
|
}
|
|
@@ -7,7 +7,7 @@ const ENGINEERING_DOCS_LINK =
|
|
|
7
7
|
|
|
8
8
|
const DEFAULT_PR_TITLE_ERROR_MESSAGE = `The pull request title doesn't conform to Toptal's engineering practices. For guidance on how to fix this problem please refer [here](${ENGINEERING_DOCS_LINK})`
|
|
9
9
|
const MISSING_TICKET_CODE_ERROR_MESSAGE =
|
|
10
|
-
"The pull request title is missing a Jira issue code. Correct format '[ASD-123] Add a cool feature'. If you're working without a Jira issue then
|
|
10
|
+
"The pull request title is missing a Jira issue code. Correct format '[ASD-123] Add a cool feature'. If you're working without a Jira issue then add a 'no-jira' label to your pull request."
|
|
11
11
|
|
|
12
12
|
module.exports = {
|
|
13
13
|
DEFAULT_PR_TITLE_ERROR_MESSAGE,
|