@eui/tools 6.13.10 → 6.13.11
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/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.13.
|
|
1
|
+
6.13.11
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.13.11 (2023-11-22)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* add pipeline link when launching package build - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([a672c5e6](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/a672c5e6b53110aed4dfde159fd510f88c28a222))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.13.10 (2023-11-22)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -129,16 +129,23 @@ module.exports.init = (pkg, envTarget, compositeType) => {
|
|
|
129
129
|
launchMessage += ` Launching *${pkg.name}* release for branch *${branches.branch}*`;
|
|
130
130
|
}
|
|
131
131
|
|
|
132
|
-
if (pipelineId) {
|
|
133
|
-
launchMessage += `==> Gitlab pipeline ID : *${pipelineId}*`;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
132
|
return utils.notification.package.sendPackageMessage({
|
|
137
133
|
package: pkg,
|
|
138
134
|
text: launchMessage
|
|
139
135
|
});
|
|
140
136
|
})
|
|
141
137
|
|
|
138
|
+
.then(() => {
|
|
139
|
+
if (pipelineId) {
|
|
140
|
+
const launchMessage = `:arrow_forward: :arrow_forward: Pipeline ID : https://gitlab.ecdevops.eu/eui/cc-csdr-root/-/pipelines/${pipelineId}`;
|
|
141
|
+
|
|
142
|
+
return utils.notification.package.sendPackageMessage({
|
|
143
|
+
package: pkg,
|
|
144
|
+
text: launchMessage
|
|
145
|
+
});
|
|
146
|
+
}
|
|
147
|
+
})
|
|
148
|
+
|
|
142
149
|
.catch((e) => {
|
|
143
150
|
throw e;
|
|
144
151
|
})
|