-
Notifications
You must be signed in to change notification settings - Fork 0
fix(identity-check): resolve goreleaser_config repo-root-relative for monorepos #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| builds: | ||
| - binary: cfl | ||
| dir: tools/cfl | ||
| archives: | ||
| - name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
| nfpms: | ||
| - package_name: cfl | ||
| homebrew_casks: | ||
| - name: cfl |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
| <metadata><id>confluence-cli</id><version>0.0.0</version></metadata> | ||
| </package> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| schema: open-cli-identity/v1 | ||
| repo: atlassian-cli | ||
| binary: cfl | ||
| goreleaser_config: .goreleaser-cfl.yml | ||
| version_file: version.txt | ||
| tag: | ||
| prefix: cfl-v | ||
| version_scheme: major_minor_run_patch | ||
| archives: | ||
| name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" | ||
| packages: | ||
| homebrew: { canonical_cask: cfl } | ||
| winget: { id: OpenCLICollective.cfl } | ||
| chocolatey: { id: confluence-cli } | ||
| linux: { package_name: cfl } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| PackageIdentifier: OpenCLICollective.cfl | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔵 Low (harness-engineering:harness-enforcement-reviewer): Winget installer manifest is a minimal stub (PackageIdentifier only). This is sufficient for identity-check's current validation scope, but if identity-check ever validates additional required winget fields (PackageVersion, Installers, ManifestType, ManifestVersion), the fixture will generate false negatives. Worth noting for future fixture maintainers. Reply to this thread when addressed. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| PackageIdentifier: OpenCLICollective.cfl |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| PackageIdentifier: OpenCLICollective.cfl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔵 Low (harness-engineering:harness-architecture-reviewer): --repo-root is registered only under the validate subparser. If dispatch logic ever changes, cmd_validate will raise AttributeError on args.repo_root; and callers who try to pass --repo-root to export-json will receive an unrecognized-argument error rather than a clear diagnostic. A brief comment at the subparser registration explaining why export-json intentionally omits --repo-root (goreleaser is a validate-only concern) would prevent both surprises without changing the interface.
Reply to this thread when addressed.