screwdriver-data-schema 21.23.1 → 21.24.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/plugins/scm.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "21.23.1",
3
+ "version": "21.24.0",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/plugins/scm.js CHANGED
@@ -113,6 +113,8 @@ const ADD_PR_COMMENT = Joi.object()
113
113
  token,
114
114
  prNum: core.scm.hook.extract('prNum').required(),
115
115
  comment: Joi.string().required(),
116
+ jobName,
117
+ pipelineId,
116
118
  scmContext
117
119
  })
118
120
  .required();