screwdriver-data-schema 23.6.0 → 23.7.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/config/regex.js +3 -1
  2. package/package.json +1 -1
package/config/regex.js CHANGED
@@ -119,5 +119,7 @@ module.exports = {
119
119
  // Provider Subnet ID. Can be subnet-xxxxxx, with A-Z,a-z,0-9,_
120
120
  SUBNET_ID: /^subnet-[\w]+$/,
121
121
  // Provider Role. Can be arn:aws:iam::xxxxxx:role/some-role
122
- ROLE_ARN: /^arn:aws:iam::\d{12}:role\/.+/
122
+ ROLE_ARN: /^arn:aws:iam::\d{12}:role\/.+/,
123
+ // Stage setup pattern. Can be stage@stage-name:setup
124
+ STAGE_SETUP_PATTERN: /^stage@([\w-]+):setup$/
123
125
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "screwdriver-data-schema",
3
- "version": "23.6.0",
3
+ "version": "23.7.0",
4
4
  "description": "Internal Data Schema of Screwdriver",
5
5
  "main": "index.js",
6
6
  "scripts": {