Add TODO.txt

This commit is contained in:
Commit Report Sync Bot 2025-03-01 23:56:53 -08:00
parent 7e843c59e7
commit 4b691bbe6c
7 changed files with 10 additions and 0 deletions

9
TODO.txt Normal file
View File

@ -0,0 +1,9 @@
- [ ] Make example of templatized workflow, that uses `github` context variables to fetch source repository owner and
name, and that fetches secret from Vault
- [ ] Remove `parentHashes`, never ended up being needed
- [ ] Add a link to the original commit from the body of the file that's created in the target repo, and/or in the
commit body.
- [ ] Flesh out the `README.md` just before pushing with a description of what this tool is
- Doing it just before push, rather than on first creation, so that it will be added even to target repositories that
have already been initialized with this tool
- [ ] Blog about this ;)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -16,5 +16,6 @@ export type Commit = {
repo_path: string;
date: Date;
message: string;
// TODO - turns out we don't actually need parentHashes anyway
parentHashes: string[];
}