ci-cost-diff-action 0.1.0 → 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 +10 -0
- package/action.yml +1 -1
- package/docs/ARCHITECTURE.md +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
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
|
+
|
|
9
|
+
## 0.1.1
|
|
10
|
+
|
|
11
|
+
- Fixed the test suite in GitHub Actions by isolating `GITHUB_ACTION` from comment-scope unit tests.
|
|
12
|
+
|
|
3
13
|
## 0.1.0
|
|
4
14
|
|
|
5
15
|
- Initial implementation.
|
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/docs/ARCHITECTURE.md
CHANGED
|
@@ -31,7 +31,6 @@ flowchart TD
|
|
|
31
31
|
|
|
32
32
|
The GitHub Action runs checked-in source directly through `action.yml` with `runs.using: node24` and `runs.main: src/action.js`; there is no build or bundled artifact. Package verification asserts the npm tarball contents, CLI executable mode, package metadata, lockfile metadata, action metadata, and release workflow guardrails before publishing.
|
|
33
33
|
|
|
34
|
-
The release workflow publishes from a checked-out tag with npm Trusted Publishing. It uses a GitHub-hosted runner, `permissions: id-token: write`, Node `24`, `package-manager-cache: false`, and `npm publish --provenance --ignore-scripts`. Once the npm package has a trusted publisher configured for `HupBaHa/cost-diff` and workflow `release.yml`, the workflow does not need `NPM_TOKEN` or another long-lived npm API key.
|
|
35
34
|
|
|
36
35
|
## Baseline Selection
|
|
37
36
|
|
package/package.json
CHANGED