Commit and push changes to TODOs
All checks were successful
/ check (push) Successful in 1m37s

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-30 01:56:59 +01:00
parent 135a6ef9d7
commit 0dcbb92011

View file

@ -12,7 +12,12 @@ in
runtimeInputs = with pkgs; [ coreutils ];
text = ''"$EDITOR" +3 "$TODO_FILE"'';
text = ''
"$EDITOR" +3 "$TODO_FILE"
git add "$TODO_FILE"
git commit -m "Update TODOs"
git push
'';
};
};