Tim Vink
Tim Vink
GitHub actions only uses a clone depth of 1. Can you try the suggestions mentioned here: https://github.com/timvink/mkdocs-git-authors-plugin#note-when-using-build-environments?
You're using checkout v2, can you try v3 (see here: https://github.com/actions/checkout) But, I noticed in the screenshot that you are using the `/tmp` directory. The 'mkdocs_simple' thing might mean you...
@starhound that's related to this issue: https://github.com/timvink/mkdocs-git-authors-plugin/issues/43 , which is still open. Having small kids means a lot less this for open source hobby work -- I'm open to PRs...
That would be a nice addition. I'd prefer to this outside of the plugin if possible. For example, for `git-authors` the main command it `git blame`, and there you have...
The `--exclude` parameter (https://git-scm.com/docs/git-log#Documentation/git-log.txt---excludeltglob-patterngt) seems promising Going through [this blogpost](https://michaelheap.com/git-ignore-rev/), it seems we could add a `.git-log-exclude` to the root of a project, container a list of commit hashes. Update:...
Not a bad idea. We're accessing git info anyway, and might as well expose a couple of extra variables from git while we're at it. Although it's clearly beyond the...
Btw, came across this plugin which is related: https://github.com/agarthetiger/mkdocs_latest_release_plugin
Hi @thatlittleboy, I appreciate the offer! There are quite some plugins that retrieve information from the `.git` folder. I maintain both this plugin and https://github.com/timvink/mkdocs-git-authors-plugin, and I know of more...
Hi Daniel, Tricky topic, getting git info right when using generated files, that are based on a source file. If I somehow have more time, I want to solve all...
Actually this might be done simpler.. you can try using the `on_post_page()` event like here: https://github.com/timvink/mkdocs-enumerate-headings-plugin/pull/36/files#r1403687795