ci-cost-diff-action 0.1.1 → 0.1.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/CHANGELOG.md +6 -0
- package/action.yml +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
- Fixed action metadata loading by removing an unsupported `job` context expression from `action.yml` descriptions.
|
|
6
|
+
- Added a metadata guardrail so action metadata expressions stay limited to the supported token default.
|
|
7
|
+
- Suppressed expected warning-path output in tests so GitHub Actions runs do not show noisy annotations.
|
|
8
|
+
|
|
3
9
|
## 0.1.1
|
|
4
10
|
|
|
5
11
|
- Fixed the test suite in GitHub Actions by isolating `GITHUB_ACTION` from comment-scope unit tests.
|
package/action.yml
CHANGED
|
@@ -39,7 +39,7 @@ inputs:
|
|
|
39
39
|
required: false
|
|
40
40
|
default: ""
|
|
41
41
|
current-job-id:
|
|
42
|
-
description: Current job check run id. Pass
|
|
42
|
+
description: Current job check run id. Pass the workflow job check run id when available.
|
|
43
43
|
required: false
|
|
44
44
|
default: ""
|
|
45
45
|
include-current-job:
|
package/package.json
CHANGED