onroute-policy-engine 0.4.0 → 0.4.2
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/.github/workflows/pipeline.yml +3 -1
- package/README.md +1 -0
- package/package.json +1 -1
|
@@ -46,7 +46,9 @@ jobs:
|
|
|
46
46
|
env:
|
|
47
47
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
48
48
|
|
|
49
|
-
- name: Create Release
|
|
49
|
+
- name: Create Release
|
|
50
|
+
env:
|
|
51
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
50
52
|
run: |
|
|
51
53
|
gh release create "${{ steps.semver.outputs.next }}" \
|
|
52
54
|
--repo="${{ github.repository }}" \
|
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
A JSON-based rules engine to validate onRouteBC permit applications against commercial vehicle policy.
|
|
2
2
|
|
|
3
|
+
|
|
3
4
|
## Synopsis
|
|
4
5
|
```orbc-policy-engine``` is a library designed to compare a commercial vehicle permit application against policy expressed in JSON format, and return a list of policy violations as well as other informational policy messages related to the permit.
|
|
5
6
|
|
package/package.json
CHANGED