Use authored date instead of commit date. (#6815)
authorGereon Kremer <nafur42@gmail.com>
Wed, 30 Jun 2021 21:34:31 +0000 (23:34 +0200)
committerGitHub <noreply@github.com>
Wed, 30 Jun 2021 21:34:31 +0000 (21:34 +0000)
This commit fixes a subtle issue with pruning the old docs from docs-ci. We remove docs that are older than one week. However, we used the commit date instead of the authored date. Since we actually squash the old commits (that are older than four weeks) regularly, the commit date is always newer.

.github/workflows/docs_cleanup.yml

index 6632cbf45610bf0ecc3c5ddad2492874e62640db..1bb48ff081753acfc7353d433e7db29d44156152 100644 (file)
@@ -32,7 +32,7 @@ jobs:
         run: |
           cd target
           for file in `find ./ -maxdepth 1 -name "docs-*"`; do
-            mod=`git log -1 HEAD --pretty="%ci" $file`
+            mod=`git log -1 HEAD --pretty="%ai" $file`
             touch -d "$mod" $file
           done
           find ./ -maxdepth 1 -name "docs-*" -mtime +7 -exec git rm -r {} +