Untrack TODO* files (working notes, not artifacts) - #20
Merged
Conversation
TODO files are working notes, not artifacts. They stay local for reference but should not be committed to the repo. Add TODO* to .gitignore and untrack TODO.final/ + TODO.impl/. Files remain on disk for local reference.
ronaldtse
added a commit
to opencdd/opencdd.github.io
that referenced
this pull request
Jul 24, 2026
Functional: - .github/workflows/deploy.yml: checkout opencdd/data-private instead of opencdd/cdd-data (GitHub redirects the old URL, but explicit is better than implicit). Local clone path cdd-data-src → data-private-src. - scripts/fetch-data.ts: update doc comment (../cdd-data → ../data-private). - scripts/fix-oceanrunner-irdis.ts: update comment (CDDAL file location). - tests/lib/pipeline.test.ts: update fake ../cdd-data path to ../data-private. Docs: - README.md, CLAUDE.md, .gitignore: s/cdd-data/data-private/. Working-notes hygiene: - Add TODO* to .gitignore; untrack TODO.astro/ and TODO.browser/. Files stay on disk for local reference. Same convention as opencdd/data-private, opencdd/data-public, opencdd/opencdd-ruby#20, opencdd/opencdd-ts#18. Note: the repository_dispatch event_type remains 'cdd-data-released' (legacy name) — it's a string identifier that matches what data-private/.github/workflows/release-data.yml sends. Renaming it would require coordinated sender+listener updates.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Per the OpenCDD org convention that TODO files are working notes (not artifacts), untrack all TODO.final/ and TODO.impl/ files. Files remain on disk for local reference; future TODO files won't be committed.
Follows the same pattern applied in opencdd/data-private#9 and opencdd/data-public.