@actions/workflow-parser 0.3.12 → 0.3.14

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.
@@ -7,6 +7,7 @@
7
7
  "properties": {
8
8
  "on": "on",
9
9
  "name": "workflow-name",
10
+ "description": "workflow-description",
10
11
  "run-name": "run-name",
11
12
  "defaults": "workflow-defaults",
12
13
  "env": "workflow-env",
@@ -28,6 +29,7 @@
28
29
  "required": true
29
30
  },
30
31
  "name": "workflow-name",
32
+ "description": "workflow-description",
31
33
  "run-name": "run-name",
32
34
  "defaults": "workflow-defaults",
33
35
  "env": "workflow-env",
@@ -44,6 +46,10 @@
44
46
  "description": "The name of the workflow that GitHub displays on your repository's 'Actions' tab.\n\n[Documentation](https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions#name)",
45
47
  "string": {}
46
48
  },
49
+ "workflow-description": {
50
+ "description": "A description for your workflow or reusable workflow",
51
+ "string": {}
52
+ },
47
53
  "run-name": {
48
54
  "context": [
49
55
  "github",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actions/workflow-parser",
3
- "version": "0.3.12",
3
+ "version": "0.3.14",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "source": "./src/index.ts",
@@ -43,7 +43,7 @@
43
43
  "watch": "tsc --build tsconfig.build.json --watch"
44
44
  },
45
45
  "dependencies": {
46
- "@actions/expressions": "^0.3.12",
46
+ "@actions/expressions": "^0.3.14",
47
47
  "cronstrue": "^2.21.0",
48
48
  "yaml": "^2.0.0-8"
49
49
  },
@@ -66,5 +66,5 @@
66
66
  "ts-jest": "^29.0.3",
67
67
  "typescript": "^4.8.4"
68
68
  },
69
- "gitHead": "83bddd3332cb4dc988ded6784719527765619404"
69
+ "gitHead": "bdee10160441ad911678a11f93ddaf08c4599f70"
70
70
  }