Replies: 1 comment 2 replies
-
Thanks for the suggestion. In v5, we do a As you still need to make a Maybe I can add some sort of hooks, so consumer of the action can execute their own code "before a commit" is being made or "before a tag" is created. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Firstly, loving the tool, thanks :-)
I'd like an option to unshallow a repo before merging.
Workflow in question
If we remove the
fetch-depth: 0
here we get a shallow checkout (which is desirable, this repo is >3GB), but the downside is that we can't merge back into master due to:So, the ideal behaviour here is:
git fetch --unshallow
So I could add a dirty check and unshallow as a different step. But, because
git-auto-commit-action
handles the dirty check, it would be very convenient to have an option like:Beta Was this translation helpful? Give feedback.
All reactions