@actions/workflow-parser 0.3.3 → 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 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);
@@ -577,7 +577,8 @@
577
577
  "mapping": {
578
578
  "properties": {
579
579
  "types": "merge-group-activity",
580
- "branches": "event-branches"
580
+ "branches": "event-branches",
581
+ "branches-ignore": "event-branches-ignore"
581
582
  }
582
583
  }
583
584
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actions/workflow-parser",
3
- "version": "0.3.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.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": "cf2fd6332f6229e6d69e4fbee7c7d665404f4181"
69
+ "gitHead": "d7ae6f88f119e981692e43852d36c62118b7ec7f"
70
70
  }