You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently using GIT_STRATEGY: fetch (the default) results in cwtools-action failing on GitLab. This is because reviewdog needs both the source and target branches of the merge request to be present for the git diff it does.
Git clone seems to solve this, and is more reliable. However, for large mods it can be quite slow to clone even just the last 50 commits, so it would be preferable to use git fetch.
This issue tracks any progress towards that. Please emote if this is something that affects you!
The text was updated successfully, but these errors were encountered:
Maybe you can do the fetch yourself outside of git strategy? I never used it in my script. Also if you're fortunate to use the same public runner (or host one yourself like i do) the container will still have your mods files thus not having to do a full clone.
Currently using
GIT_STRATEGY: fetch
(the default) results in cwtools-action failing on GitLab. This is because reviewdog needs both the source and target branches of the merge request to be present for thegit diff
it does.Git clone seems to solve this, and is more reliable. However, for large mods it can be quite slow to clone even just the last 50 commits, so it would be preferable to use git fetch.
This issue tracks any progress towards that. Please emote if this is something that affects you!
The text was updated successfully, but these errors were encountered: