oss-signal 0.6.0 → 0.6.3
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 +15 -0
- package/README.md +10 -10
- package/docs/adoption-evidence.md +11 -11
- package/docs/codex-for-oss-application.md +12 -12
- package/docs/codex-for-oss-form-answers.md +4 -4
- package/docs/examples/github-action-workflow.yml +1 -1
- package/docs/examples/github-code-scanning-workflow.yml +2 -2
- package/docs/examples/github-inventory-workflow.yml +1 -1
- package/docs/examples/github-url-report.md +1 -1
- package/docs/examples/inventory-report.md +1 -1
- package/docs/examples/self-audit.sarif +2 -2
- package/docs/maintainer-playbook.md +4 -4
- package/docs/release-notes/v0.6.1.md +18 -0
- package/docs/release-notes/v0.6.2.md +17 -0
- package/docs/release-notes/v0.6.3.md +16 -0
- package/docs/release-process.md +8 -8
- package/docs/reviewer-evidence.md +5 -5
- package/docs/self-audit.md +1 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.6.3
|
|
6
|
+
|
|
7
|
+
- Updated the release workflow to use Node 24 and npm 11.16 for npm Trusted Publishing support.
|
|
8
|
+
- Published through GitHub Actions without an npm OTP.
|
|
9
|
+
|
|
10
|
+
## 0.6.2
|
|
11
|
+
|
|
12
|
+
- Switched the release workflow from token-gated publishing to npm Trusted Publishing with provenance.
|
|
13
|
+
- Removed the repository-variable gate so tag releases can publish through GitHub Actions OIDC without npm OTP.
|
|
14
|
+
|
|
15
|
+
## 0.6.1
|
|
16
|
+
|
|
17
|
+
- Added GitHub Release creation to the tag-triggered release workflow.
|
|
18
|
+
- Published the repository inventory release with a GitHub Release page and npm package verification path.
|
|
19
|
+
|
|
5
20
|
## 0.6.0
|
|
6
21
|
|
|
7
22
|
- Added repository inventory mode for auditing newline-delimited lists of local paths, GitHub URLs, and `owner/repo` shorthands.
|
package/README.md
CHANGED
|
@@ -17,8 +17,8 @@ It checks the files and automation that reduce maintainer load: README, license,
|
|
|
17
17
|
|
|
18
18
|
Public evidence for the maintainer workflow is collected in [docs/reviewer-evidence.md](docs/reviewer-evidence.md) and [docs/adoption-evidence.md](docs/adoption-evidence.md).
|
|
19
19
|
|
|
20
|
-
- Published package: [`oss-signal@0.6.
|
|
21
|
-
- Published GitHub Action: [`SalmonPlays/oss-signal@v0.6.
|
|
20
|
+
- Published package: [`oss-signal@0.6.3`](https://www.npmjs.com/package/oss-signal), with `latest` pointing at `0.6.3`.
|
|
21
|
+
- Published GitHub Action: [`SalmonPlays/oss-signal@v0.6.3`](https://github.com/SalmonPlays/oss-signal/tree/v0.6.3).
|
|
22
22
|
- Public checks: CI, Repository health, and CodeQL are passing on `main`.
|
|
23
23
|
- Self-audit: this repository scores **100/100 (A)** locally and through GitHub URL mode.
|
|
24
24
|
- Field use: four public maintainer-readiness audits have been turned into four issues and four focused follow-up PRs.
|
|
@@ -142,7 +142,7 @@ Summary:
|
|
|
142
142
|
|
|
143
143
|
See [docs/self-audit.md](docs/self-audit.md) for the full local self-audit report, [docs/examples/github-url-report.md](docs/examples/github-url-report.md) for the GitHub URL audit output, [docs/examples/github-issue-body.md](docs/examples/github-issue-body.md) for issue output, and [docs/examples/self-audit.sarif](docs/examples/self-audit.sarif) for SARIF output.
|
|
144
144
|
|
|
145
|
-
The [Repository health workflow](.github/workflows/repository-health.yml) runs `SalmonPlays/oss-signal@v0.6.
|
|
145
|
+
The [Repository health workflow](.github/workflows/repository-health.yml) runs `SalmonPlays/oss-signal@v0.6.3`, uploads the Markdown report as an artifact, and uploads SARIF to GitHub Code Scanning on non-PR runs. The [Repository inventory workflow](.github/workflows/repository-inventory.yml) runs the inventory mode from CI and uploads a multi-repository report artifact.
|
|
146
146
|
|
|
147
147
|
## Field Audits
|
|
148
148
|
|
|
@@ -186,7 +186,7 @@ oss-signal . --fail-under 80
|
|
|
186
186
|
Add `oss-signal` directly to a GitHub Actions workflow:
|
|
187
187
|
|
|
188
188
|
```yaml
|
|
189
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
189
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
190
190
|
id: oss-signal
|
|
191
191
|
with:
|
|
192
192
|
fail-under: "80"
|
|
@@ -202,7 +202,7 @@ The Action writes a concise GitHub Actions step summary by default, so reviewers
|
|
|
202
202
|
Run an inventory from CI:
|
|
203
203
|
|
|
204
204
|
```yaml
|
|
205
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
205
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
206
206
|
env:
|
|
207
207
|
GITHUB_TOKEN: ${{ github.token }}
|
|
208
208
|
with:
|
|
@@ -214,7 +214,7 @@ Run an inventory from CI:
|
|
|
214
214
|
Generate an editable Issue body from CI:
|
|
215
215
|
|
|
216
216
|
```yaml
|
|
217
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
217
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
218
218
|
with:
|
|
219
219
|
format: issue
|
|
220
220
|
output: maintainer-follow-up.md
|
|
@@ -236,7 +236,7 @@ jobs:
|
|
|
236
236
|
runs-on: ubuntu-latest
|
|
237
237
|
steps:
|
|
238
238
|
- uses: actions/checkout@v4
|
|
239
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
239
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
240
240
|
id: oss-signal
|
|
241
241
|
with:
|
|
242
242
|
fail-under: "80"
|
|
@@ -259,7 +259,7 @@ permissions:
|
|
|
259
259
|
|
|
260
260
|
steps:
|
|
261
261
|
- uses: actions/checkout@v4
|
|
262
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
262
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
263
263
|
with:
|
|
264
264
|
format: sarif
|
|
265
265
|
output: oss-signal.sarif
|
|
@@ -269,7 +269,7 @@ steps:
|
|
|
269
269
|
sarif_file: oss-signal.sarif
|
|
270
270
|
```
|
|
271
271
|
|
|
272
|
-
This repository dogfoods the public Action tag in [Repository health](.github/workflows/repository-health.yml), which runs `SalmonPlays/oss-signal@v0.6.
|
|
272
|
+
This repository dogfoods the public Action tag in [Repository health](.github/workflows/repository-health.yml), which runs `SalmonPlays/oss-signal@v0.6.3` against the repository, uploads the Markdown report artifact, and publishes SARIF to Code Scanning on non-PR runs.
|
|
273
273
|
|
|
274
274
|
You can also run the CLI directly in CI:
|
|
275
275
|
|
|
@@ -292,7 +292,7 @@ You can also run the CLI directly in CI:
|
|
|
292
292
|
|
|
293
293
|
## Release Process
|
|
294
294
|
|
|
295
|
-
Releases use the checklist in [docs/release-process.md](docs/release-process.md). The repository also includes a tag-triggered [release workflow](.github/workflows/release.yml) that verifies the package,
|
|
295
|
+
Releases use the checklist in [docs/release-process.md](docs/release-process.md). The repository also includes a tag-triggered [release workflow](.github/workflows/release.yml) that verifies the package, creates a GitHub Release, and publishes to npm with Trusted Publishing provenance.
|
|
296
296
|
|
|
297
297
|
## Contributing
|
|
298
298
|
|
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This page collects the public evidence that `oss-signal` is built for real open-source maintainer workflows.
|
|
4
4
|
|
|
5
|
-
Last verified: 2026-06-
|
|
5
|
+
Last verified: 2026-06-04T02:42:51Z
|
|
6
6
|
|
|
7
7
|
## Project Links
|
|
8
8
|
|
|
9
9
|
- Repository: https://github.com/SalmonPlays/oss-signal
|
|
10
|
-
- npm package: https://www.npmjs.com/package/oss-signal (`0.6.
|
|
11
|
-
- GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.
|
|
12
|
-
- GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.6.
|
|
10
|
+
- npm package: https://www.npmjs.com/package/oss-signal (`0.6.3` latest)
|
|
11
|
+
- GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.3
|
|
12
|
+
- GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.6.3
|
|
13
13
|
- GitHub Action metadata: [action.yml](../action.yml)
|
|
14
14
|
- Public dogfood workflow: [.github/workflows/repository-health.yml](../.github/workflows/repository-health.yml)
|
|
15
15
|
- Public inventory workflow: [.github/workflows/repository-inventory.yml](../.github/workflows/repository-inventory.yml)
|
|
@@ -44,15 +44,15 @@ The [maintainer playbook](maintainer-playbook.md) documents the end-to-end workf
|
|
|
44
44
|
|
|
45
45
|
## Published Package Verification
|
|
46
46
|
|
|
47
|
-
The npm package is publicly available as `oss-signal@0.6.
|
|
47
|
+
The npm package is publicly available as `oss-signal@0.6.3` with `latest` pointing at `0.6.3`.
|
|
48
48
|
|
|
49
|
-
The npm downloads API returned 356 downloads for both last-week and last-month windows on 2026-06-
|
|
49
|
+
The npm downloads API returned 356 downloads for both last-week and last-month windows on 2026-06-04. Download counts can lag publication, so this is treated as supporting evidence rather than proof of broad adoption.
|
|
50
50
|
|
|
51
51
|
Clean-directory execution against the public GitHub repository returned:
|
|
52
52
|
|
|
53
53
|
```json
|
|
54
54
|
{
|
|
55
|
-
"version": "0.6.
|
|
55
|
+
"version": "0.6.3",
|
|
56
56
|
"score": 100,
|
|
57
57
|
"grade": "A",
|
|
58
58
|
"source": "github"
|
|
@@ -67,7 +67,7 @@ Current public workflow status:
|
|
|
67
67
|
- Release: passing
|
|
68
68
|
- Separate public workflow demo: passing
|
|
69
69
|
|
|
70
|
-
The npm registry returned `0.6.
|
|
70
|
+
The npm registry returned `0.6.3` for both the package version and `latest` dist-tag on 2026-06-04T02:42:51Z. The same check returned 356 downloads for the last-week and last-month windows.
|
|
71
71
|
|
|
72
72
|
## Separate Public Workflow Evidence
|
|
73
73
|
|
|
@@ -92,7 +92,7 @@ The tool has been used to generate maintainer-readiness reports for public repos
|
|
|
92
92
|
|
|
93
93
|
These issues and pull requests are evidence of the intended maintainer workflow: run a deterministic audit, explain the missing signals, and give maintainers a small set of actionable improvements. Each PR is intentionally limited to documentation or GitHub templates.
|
|
94
94
|
|
|
95
|
-
All four follow-up PRs were still open when checked from GitHub on 2026-06-
|
|
95
|
+
All four follow-up PRs were still open when checked from GitHub on 2026-06-04T02:42:51Z. They are not claimed as accepted adoption unless a maintainer merges or otherwise endorses them.
|
|
96
96
|
|
|
97
97
|
## Verification Commands
|
|
98
98
|
|
|
@@ -104,10 +104,10 @@ npm run audit:github
|
|
|
104
104
|
node src/cli.js . --format sarif --output docs/examples/self-audit.sarif
|
|
105
105
|
node src/cli.js --inventory docs/examples/inventory-targets.txt --format markdown --output docs/examples/inventory-report.md
|
|
106
106
|
node src/cli.js platformatic/massimo --format json
|
|
107
|
-
npm exec --yes --package=oss-signal@0.6.
|
|
107
|
+
npm exec --yes --package=oss-signal@0.6.3 -- oss-signal SalmonPlays/oss-signal --format json
|
|
108
108
|
```
|
|
109
109
|
|
|
110
|
-
The current repository self-audit score is 100/100, the GitHub community profile health score is 100, and CI verifies the local GitHub Action wrapper. The public `v0.6.
|
|
110
|
+
The current repository self-audit score is 100/100, the GitHub community profile health score is 100, and CI verifies the local GitHub Action wrapper. The public `v0.6.3` Action tag is used by the repository health workflow for Markdown and SARIF output. The published npm `0.6.3` package has also been executed from a clean temporary directory against the public GitHub repository, returning 100/100 (A).
|
|
111
111
|
|
|
112
112
|
Public CI evidence:
|
|
113
113
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Codex for Open Source Application Brief
|
|
2
2
|
|
|
3
|
-
Snapshot: 2026-06-
|
|
3
|
+
Snapshot: 2026-06-04T02:42:51Z
|
|
4
4
|
|
|
5
5
|
This document summarizes why `oss-signal` is a fit for OpenAI's Codex for Open Source program. The official program page says open-source maintainers can apply, with emphasis on core maintainers, widely used public projects, and projects that play an important ecosystem role: https://developers.openai.com/community/codex-for-oss
|
|
6
6
|
|
|
@@ -8,8 +8,8 @@ This document summarizes why `oss-signal` is a fit for OpenAI's Codex for Open S
|
|
|
8
8
|
|
|
9
9
|
- Repository: https://github.com/SalmonPlays/oss-signal
|
|
10
10
|
- npm package: https://www.npmjs.com/package/oss-signal
|
|
11
|
-
- GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.
|
|
12
|
-
- GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.6.
|
|
11
|
+
- GitHub Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.3
|
|
12
|
+
- GitHub Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.6.3
|
|
13
13
|
- CI workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/ci.yml
|
|
14
14
|
- Repository health workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml
|
|
15
15
|
- Repository inventory workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-inventory.yml
|
|
@@ -47,22 +47,22 @@ This project is designed around repeatable maintainer workflows where Codex is u
|
|
|
47
47
|
|
|
48
48
|
The repository currently has:
|
|
49
49
|
|
|
50
|
-
- A published npm package with `0.6.
|
|
51
|
-
- npm download API evidence showing 356 last-week and last-month downloads on 2026-06-
|
|
52
|
-
- A published GitHub Release for v0.6.
|
|
50
|
+
- A published npm package with `0.6.3` as the latest release.
|
|
51
|
+
- npm download API evidence showing 356 last-week and last-month downloads on 2026-06-04.
|
|
52
|
+
- A published GitHub Release for v0.6.3 with repository inventory release notes and CI usage guidance.
|
|
53
53
|
- A reusable GitHub Action with `score`, `grade`, `failed`, and `report-path` outputs.
|
|
54
54
|
- A repository inventory mode for organization-level maintainer-readiness triage, available in both CLI and GitHub Action form.
|
|
55
|
-
- A clean npm smoke test of `oss-signal@0.6.
|
|
55
|
+
- A clean npm smoke test of `oss-signal@0.6.3` returning version `0.6.3`, score `100`, grade `A`, and source `github`.
|
|
56
56
|
- SARIF output for GitHub Code Scanning integration.
|
|
57
|
-
- A v0.6.
|
|
58
|
-
- A public dogfood workflow that runs `SalmonPlays/oss-signal@v0.6.
|
|
59
|
-
- A public dogfood inventory workflow that runs `SalmonPlays/oss-signal@v0.6.
|
|
57
|
+
- A v0.6.3 GitHub Action tag with step summary, SARIF support, inventory support, and Issue-ready output.
|
|
58
|
+
- A public dogfood workflow that runs `SalmonPlays/oss-signal@v0.6.3` against the repository, uploads the Markdown report artifact, and uploads SARIF to GitHub Code Scanning on non-PR runs.
|
|
59
|
+
- A public dogfood inventory workflow that runs `SalmonPlays/oss-signal@v0.6.3` against a repository target list and uploads an inventory artifact.
|
|
60
60
|
- A separate public workflow demo that runs `SalmonPlays/oss-signal@v0.5.1` from another repository and uploads Markdown, SARIF, and Issue-ready report artifacts.
|
|
61
61
|
- A maintainer playbook that documents audit, triage, issue, PR, CI, and SARIF workflows.
|
|
62
62
|
- A release process and tag-triggered release workflow that verify package contents and support npm provenance publishing when repository secrets are configured.
|
|
63
63
|
- CI, Repository health, CodeQL, and Release workflows passing publicly.
|
|
64
64
|
- A local self-audit score of 100/100.
|
|
65
|
-
- A clean-directory smoke test of `npm exec --yes --package=oss-signal@0.6.
|
|
65
|
+
- A clean-directory smoke test of `npm exec --yes --package=oss-signal@0.6.3 -- oss-signal SalmonPlays/oss-signal --format json`, returning 100/100 (A).
|
|
66
66
|
- Public reports, issues, and PRs created from real repository audits, including four posted field-audit issues and four follow-up PRs.
|
|
67
67
|
|
|
68
68
|
## Separate Workflow Demo
|
|
@@ -99,5 +99,5 @@ Prepared official form answers are in [codex-for-oss-form-answers.md](codex-for-
|
|
|
99
99
|
## Next Evidence To Collect
|
|
100
100
|
|
|
101
101
|
- One or more merged external PRs.
|
|
102
|
-
- A public workflow run in an independent maintainer-owned repository using `SalmonPlays/oss-signal@v0.6.
|
|
102
|
+
- A public workflow run in an independent maintainer-owned repository using `SalmonPlays/oss-signal@v0.6.3`, ideally with SARIF or inventory upload enabled.
|
|
103
103
|
- npm download data once the registry starts reporting weekly/monthly counts.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Codex for Open Source Form Answers
|
|
2
2
|
|
|
3
|
-
Snapshot: 2026-06-
|
|
3
|
+
Snapshot: 2026-06-04T02:42:51Z
|
|
4
4
|
|
|
5
5
|
This page prepares concise answers for the official Codex for Open Source application form: https://openai.com/form/codex-for-oss/
|
|
6
6
|
|
|
@@ -50,7 +50,7 @@ Primary maintainer
|
|
|
50
50
|
## Why This Repository Qualifies
|
|
51
51
|
|
|
52
52
|
```text
|
|
53
|
-
oss-signal is a public OSS maintainer tool for reducing triage and review load. It ships as npm package oss-signal@0.6.
|
|
53
|
+
oss-signal is a public OSS maintainer tool for reducing triage and review load. It ships as npm package oss-signal@0.6.3 and GitHub Action SalmonPlays/oss-signal@v0.6.3, supports Markdown/JSON/SARIF/Issue/Inventory output, passes CI/CodeQL/Release, has a 100/100 self-audit, and has four public field-audit issues plus four PRs.
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## Interest
|
|
@@ -81,13 +81,13 @@ Use Codex/API credits to run repeatable public repository audits, draft focused
|
|
|
81
81
|
## Anything Else
|
|
82
82
|
|
|
83
83
|
```text
|
|
84
|
-
The project is early, so I am not overstating adoption. Current evidence includes npm 0.6.
|
|
84
|
+
The project is early, so I am not overstating adoption. Current evidence includes npm 0.6.3 latest, 356 npm downloads reported by the registry API, a published v0.6.3 release, a reusable GitHub Action with inventory mode, a clean npm smoke test returning 100/A, public CI/Repository health/CodeQL/Release, four field-audit issues, four PRs, and a workflow demo with artifacts.
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
## Evidence Links
|
|
88
88
|
|
|
89
89
|
- npm package: https://www.npmjs.com/package/oss-signal
|
|
90
|
-
- GitHub Release v0.6.
|
|
90
|
+
- GitHub Release v0.6.3: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.3
|
|
91
91
|
- Main repository health workflow: https://github.com/SalmonPlays/oss-signal/actions/workflows/repository-health.yml
|
|
92
92
|
- Separate workflow demo repository: https://github.com/SalmonPlays/oss-signal-adoption-demo
|
|
93
93
|
- Separate successful workflow run: https://github.com/SalmonPlays/oss-signal-adoption-demo/actions/runs/26883001038
|
|
@@ -15,13 +15,13 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- uses: actions/checkout@v4
|
|
18
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
18
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
19
19
|
id: oss-signal
|
|
20
20
|
with:
|
|
21
21
|
fail-under: "80"
|
|
22
22
|
output: oss-signal-report.md
|
|
23
23
|
summary: "true"
|
|
24
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
24
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
25
25
|
with:
|
|
26
26
|
format: sarif
|
|
27
27
|
output: oss-signal.sarif
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"tool": {
|
|
7
7
|
"driver": {
|
|
8
8
|
"name": "oss-signal",
|
|
9
|
-
"semanticVersion": "0.6.
|
|
9
|
+
"semanticVersion": "0.6.3",
|
|
10
10
|
"informationUri": "https://github.com/SalmonPlays/oss-signal",
|
|
11
11
|
"rules": [
|
|
12
12
|
{
|
|
@@ -400,7 +400,7 @@
|
|
|
400
400
|
"score": 100,
|
|
401
401
|
"grade": "A",
|
|
402
402
|
"source": "local",
|
|
403
|
-
"generatedAt": "2026-06-
|
|
403
|
+
"generatedAt": "2026-06-04T02:42:52.048Z"
|
|
404
404
|
}
|
|
405
405
|
}
|
|
406
406
|
]
|
|
@@ -71,7 +71,7 @@ The field-audit examples in [docs/outreach](outreach) show this pattern for publ
|
|
|
71
71
|
Add the GitHub Action to keep the signal visible:
|
|
72
72
|
|
|
73
73
|
```yaml
|
|
74
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
74
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
75
75
|
id: oss-signal
|
|
76
76
|
with:
|
|
77
77
|
fail-under: "80"
|
|
@@ -84,7 +84,7 @@ The Action writes `score`, `grade`, `failed`, and `report-path` outputs, and wri
|
|
|
84
84
|
For a repository inventory, commit a newline-delimited target list and pass it through the Action:
|
|
85
85
|
|
|
86
86
|
```yaml
|
|
87
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
87
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
88
88
|
env:
|
|
89
89
|
GITHUB_TOKEN: ${{ github.token }}
|
|
90
90
|
with:
|
|
@@ -104,7 +104,7 @@ permissions:
|
|
|
104
104
|
|
|
105
105
|
steps:
|
|
106
106
|
- uses: actions/checkout@v4
|
|
107
|
-
- uses: SalmonPlays/oss-signal@v0.6.
|
|
107
|
+
- uses: SalmonPlays/oss-signal@v0.6.3
|
|
108
108
|
with:
|
|
109
109
|
format: sarif
|
|
110
110
|
output: oss-signal.sarif
|
|
@@ -120,7 +120,7 @@ See [docs/examples/github-code-scanning-workflow.yml](examples/github-code-scann
|
|
|
120
120
|
|
|
121
121
|
Useful evidence for maintainers and reviewers:
|
|
122
122
|
|
|
123
|
-
- A public workflow run that uses `SalmonPlays/oss-signal@v0.6.
|
|
123
|
+
- A public workflow run that uses `SalmonPlays/oss-signal@v0.6.3`.
|
|
124
124
|
- A generated Markdown report attached as an artifact.
|
|
125
125
|
- A SARIF upload in Code Scanning.
|
|
126
126
|
- A small issue or PR that follows from an audit finding.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# oss-signal v0.6.1
|
|
2
|
+
|
|
3
|
+
`oss-signal` v0.6.1 publishes the repository inventory release with GitHub Release automation enabled.
|
|
4
|
+
|
|
5
|
+
## Highlights
|
|
6
|
+
|
|
7
|
+
- Keeps the v0.6 inventory mode for auditing newline-delimited lists of repositories.
|
|
8
|
+
- Keeps GitHub Action inventory support with step summary output and average-score outputs.
|
|
9
|
+
- Adds release workflow automation that creates a GitHub Release from `docs/release-notes/`.
|
|
10
|
+
- Verifies npm package contents before release publication.
|
|
11
|
+
|
|
12
|
+
## Verification
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm run check
|
|
16
|
+
node src/cli.js --inventory docs/examples/inventory-targets.txt --format markdown
|
|
17
|
+
npm publish --dry-run
|
|
18
|
+
```
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# oss-signal v0.6.2
|
|
2
|
+
|
|
3
|
+
`oss-signal` v0.6.2 switches release publishing to npm Trusted Publishing.
|
|
4
|
+
|
|
5
|
+
## Highlights
|
|
6
|
+
|
|
7
|
+
- Publishes from GitHub Actions through npm Trusted Publishing and OIDC.
|
|
8
|
+
- Keeps npm provenance enabled with `npm publish --provenance`.
|
|
9
|
+
- Removes the old `NPM_TOKEN` / `NPM_PUBLISH_ENABLED` gate from release publishing.
|
|
10
|
+
- Keeps the v0.6 repository inventory CLI and GitHub Action support.
|
|
11
|
+
|
|
12
|
+
## Verification
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npm run check
|
|
16
|
+
npm publish --dry-run
|
|
17
|
+
```
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# oss-signal v0.6.3
|
|
2
|
+
|
|
3
|
+
`oss-signal` v0.6.3 completes the move to npm Trusted Publishing.
|
|
4
|
+
|
|
5
|
+
## Highlights
|
|
6
|
+
|
|
7
|
+
- Uses Node 24 and npm 11.16 in the release workflow for Trusted Publishing support.
|
|
8
|
+
- Publishes from GitHub Actions without a manual npm OTP.
|
|
9
|
+
- Keeps GitHub Release creation, package verification, and the v0.6 repository inventory workflow.
|
|
10
|
+
|
|
11
|
+
## Verification
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm run check
|
|
15
|
+
npm publish --dry-run
|
|
16
|
+
```
|
package/docs/release-process.md
CHANGED
|
@@ -49,11 +49,11 @@ git push origin main --tags
|
|
|
49
49
|
|
|
50
50
|
Create a GitHub Release for the tag and use the release notes in `docs/release-notes/` when available.
|
|
51
51
|
|
|
52
|
-
For example, `v0.6.
|
|
52
|
+
For example, `v0.6.3` uses [docs/release-notes/v0.6.3.md](release-notes/v0.6.3.md).
|
|
53
53
|
|
|
54
54
|
## npm Publish
|
|
55
55
|
|
|
56
|
-
Manual publish path:
|
|
56
|
+
Manual publish path, used only as a fallback:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
59
|
npm publish --access public
|
|
@@ -61,14 +61,14 @@ npm publish --access public
|
|
|
61
61
|
|
|
62
62
|
Automation path:
|
|
63
63
|
|
|
64
|
-
The tag-triggered [release workflow](../.github/workflows/release.yml) runs the same checks
|
|
64
|
+
The tag-triggered [release workflow](../.github/workflows/release.yml) runs the same checks, verifies the package with `npm publish --dry-run`, creates a GitHub Release, and publishes to npm with Trusted Publishing provenance.
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
Trusted Publishing must be configured on npm for:
|
|
67
67
|
|
|
68
|
-
-
|
|
69
|
-
- Repository
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
- Package: `oss-signal`
|
|
69
|
+
- Repository: `SalmonPlays/oss-signal`
|
|
70
|
+
- Workflow file: `release.yml`
|
|
71
|
+
- Permission: npm publish
|
|
72
72
|
|
|
73
73
|
## Post-Release Verification
|
|
74
74
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Reviewer Evidence Quickstart
|
|
2
2
|
|
|
3
|
-
Last verified: 2026-06-
|
|
3
|
+
Last verified: 2026-06-04T02:42:51Z
|
|
4
4
|
|
|
5
5
|
This page gives reviewers a short path to verify that `oss-signal` is a real OSS maintainer workflow tool, not only a demo repository.
|
|
6
6
|
|
|
@@ -12,12 +12,12 @@ This page gives reviewers a short path to verify that `oss-signal` is a real OSS
|
|
|
12
12
|
npm view oss-signal version dist-tags --json
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
Expected result: `version` is `0.6.
|
|
15
|
+
Expected result: `version` is `0.6.3`, and `dist-tags.latest` is `0.6.3`.
|
|
16
16
|
|
|
17
17
|
2. Run the published package against the public repository:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm exec --yes --package=oss-signal@0.6.
|
|
20
|
+
npm exec --yes --package=oss-signal@0.6.3 -- oss-signal SalmonPlays/oss-signal --format json
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Expected result: score `100`, grade `A`, source `github`.
|
|
@@ -40,8 +40,8 @@ Expected result: a Markdown table with one row per repository, average score, sc
|
|
|
40
40
|
|
|
41
41
|
5. Inspect the public Action tag:
|
|
42
42
|
|
|
43
|
-
- Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.6.
|
|
44
|
-
- Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.
|
|
43
|
+
- Action tag: https://github.com/SalmonPlays/oss-signal/tree/v0.6.3
|
|
44
|
+
- Release: https://github.com/SalmonPlays/oss-signal/releases/tag/v0.6.3
|
|
45
45
|
- Action metadata: [../action.yml](../action.yml)
|
|
46
46
|
|
|
47
47
|
6. Inspect field-audit evidence:
|
package/docs/self-audit.md
CHANGED
package/package.json
CHANGED