chore(docs): update otdfctl references to platform monorepo#309
chore(docs): update otdfctl references to platform monorepo#309alkalescent merged 3 commits intomainfrom
Conversation
The opentdf/otdfctl repo is archived. The CLI now lives in opentdf/platform under otdfctl/. Update all references across install scripts, docusaurus config, workflows, and docs. DSPX-2712
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
📝 WalkthroughWalkthroughThe PR migrates references and sources for otdfctl from the standalone Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Review rate limit: 0/1 reviews remaining, refill in 60 minutes.Comment |
|
📄 Preview deployed to https://opentdf-docs-pr-309.surge.sh |
There was a problem hiding this comment.
Code Review
This pull request migrates all references, documentation links, and build configurations from the standalone opentdf/otdfctl repository to its new location within the opentdf/platform monorepo. Key changes include updating Docusaurus remote repository settings, adjusting the install.sh script to handle the new release tag format, and correcting documentation links across various guides. A review comment suggests making the CLI branch configurable via an environment variable in the Docusaurus configuration to align with the project's documentation.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
|
verified that new otdfctl docs appear in preview link |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In @.github/workflows/otdfctl-update.yaml:
- Line 41: The COMMIT_HASH assignment is using bash array syntax
(COMMIT_HASH=(...)) which prevents the git ls-remote command from executing;
change the assignment to use command substitution (COMMIT_HASH=$(git ls-remote
--heads platform "refs/heads/$TAG" | awk '{ print $1 }')) so the command runs
and COMMIT_HASH contains the actual hash; update the line where COMMIT_HASH is
set to use $(...) instead of (...) and keep the existing git ls-remote and awk
pipeline intact.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 07d2456a-7f25-4b81-9974-fcc29af15a60
📒 Files selected for processing (11)
.github/workflows/otdfctl-update.yamlREADME.mddocs/components/policy/keymanagement/base_key.mddocs/components/policy/keymanagement/quickstart.mddocs/getting-started/index.mdxdocs/getting-started/quickstart.mdxdocs/guides/subject-mapping-guide.mddocs/release-notes.mdxdocusaurus.config.tssrc/components/landing/DeveloperFirst.tsxstatic/quickstart/install.sh
PR_EXISTS and COMMIT_HASH were using bash array syntax (...) instead of command substitution $(...), preventing the commands from executing.
Summary
opentdf/otdfctlreferences toopentdf/platformmonorepoopentdf/otdfctlrepo is archived; CLI now lives underotdfctl/in the platform repoSummary by CodeRabbit
Documentation
Chores