@actions/workflow-parser 0.3.4 → 0.3.5
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/README.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ jobs:
|
|
|
35
35
|
);
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
`convertWorkflowTemplate` then takes that intermediate representation and converts it to a [`WorkflowTemplate`](./src/workflow-template.ts) object, which is a more convenient representation for working with workflows.
|
|
38
|
+
`convertWorkflowTemplate` then takes that intermediate representation and converts it to a [`WorkflowTemplate`](./src/model/workflow-template.ts) object, which is a more convenient representation for working with workflows.
|
|
39
39
|
|
|
40
40
|
```typescript
|
|
41
41
|
const workflowTemplate = await convertWorkflowTemplate(result.context, result.value);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actions/workflow-parser",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
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.
|
|
46
|
+
"@actions/expressions": "^0.3.5",
|
|
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": "
|
|
69
|
+
"gitHead": "d7ae6f88f119e981692e43852d36c62118b7ec7f"
|
|
70
70
|
}
|