From 8fe3de4db26c74ac4c163b91f9601f1a6e1484af Mon Sep 17 00:00:00 2001 From: Hong Phuc Date: Fri, 24 Apr 2026 01:35:37 +0700 Subject: [PATCH] Track the external Reddit video maker as a submodule Keep the third-party bot in a dedicated submodule so its history and update cadence stay isolated from the main repo while still making it available in-tree for local workflows. Constraint: The upstream code should remain separately updatable without copying its files into this repository. Rejected: Copy the project into the tree directly | duplicated history and harder future syncing. Confidence: high Scope-risk: narrow Directive: Update the submodule by moving it deliberately; do not edit its contents from the parent repo without planning that workflow. Tested: git submodule add; git submodule status; inspected .gitmodules Not-tested: Upstream repo build/runtime inside this checkout. --- .gitmodules | 3 +++ vendor/FullyAutomatedRedditVideoMakerBot | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 vendor/FullyAutomatedRedditVideoMakerBot diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..c5bf4d4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "vendor/FullyAutomatedRedditVideoMakerBot"] + path = vendor/FullyAutomatedRedditVideoMakerBot + url = https://github.com/raga70/FullyAutomatedRedditVideoMakerBot.git diff --git a/vendor/FullyAutomatedRedditVideoMakerBot b/vendor/FullyAutomatedRedditVideoMakerBot new file mode 160000 index 0000000..6e5c9ff --- /dev/null +++ b/vendor/FullyAutomatedRedditVideoMakerBot @@ -0,0 +1 @@ +Subproject commit 6e5c9ffacc5ac601cb596cfaa72fc947824a2ca3