Added a comment: GitHub Actions
authorathas@60e56fd42a78bbbce444d175865ce4d66ba1a779 <athas@web>
Fri, 15 Oct 2021 20:53:06 +0000 (20:53 +0000)
committeradmin <admin@branchable.com>
Fri, 15 Oct 2021 20:53:06 +0000 (20:53 +0000)
doc/forum/Submodule_.git_not_converted_to_symlink/comment_3_636fe0ff273cd8987168e3095929aa7f._comment [new file with mode: 0644]

diff --git a/doc/forum/Submodule_.git_not_converted_to_symlink/comment_3_636fe0ff273cd8987168e3095929aa7f._comment b/doc/forum/Submodule_.git_not_converted_to_symlink/comment_3_636fe0ff273cd8987168e3095929aa7f._comment
new file mode 100644 (file)
index 0000000..ab1ae15
--- /dev/null
@@ -0,0 +1,15 @@
+[[!comment format=mdwn
+ username="athas@60e56fd42a78bbbce444d175865ce4d66ba1a779"
+ nickname="athas"
+ avatar="http://cdn.libravatar.org/avatar/f6ddda1fabf459f90ca590f9499033c4"
+ subject="GitHub Actions"
+ date="2021-10-15T20:53:06Z"
+ content="""
+It appears the `checkout` action on GitHub Actions mangles submodules that use `git-annex`.  The solution is to ask the checkout action to do a deep clone:
+
+    - uses: actions/checkout@v2
+      with:
+        submodules: recursive # for git-annex to work.
+        fetch-depth: 0        #
+
+"""]]