@eui/tools 6.13.9 → 6.13.10

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.
@@ -1 +1 @@
1
- 6.13.9
1
+ 6.13.10
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 6.13.10 (2023-11-22)
2
+
3
+ ##### Chores
4
+
5
+ * **other:**
6
+ * added pipelineId to slack release package - EUI-7121 [EUI-7121](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-7121) ([551b97f2](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/551b97f2be80074daac727e3f58ddb6795f879bc))
7
+
8
+ * * *
9
+ * * *
1
10
  ## 6.13.9 (2023-11-15)
2
11
 
3
12
  ##### Chores
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/tools",
3
- "version": "6.13.9",
3
+ "version": "6.13.10",
4
4
  "tag": "latest",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI common tools and scripts",
@@ -12,7 +12,7 @@ const versionUtils = require('../../version/version-utils');
12
12
  const configUtils = require('../../config/config-utils');
13
13
 
14
14
  // GLOBAL ARGS
15
- const { dryRun } = utils.tools.getArgs();
15
+ const { dryRun, pipelineId } = utils.tools.getArgs();
16
16
 
17
17
 
18
18
 
@@ -129,6 +129,10 @@ 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
+
132
136
  return utils.notification.package.sendPackageMessage({
133
137
  package: pkg,
134
138
  text: launchMessage