Add a way to run a script before committing and pushing #635
thislooksfun
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
I managed to get the behavior I wanted a different way. thislooksfun/snoots@c29cae5. I still think this would be useful, but I no longer require it personally. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using this action to automatically deploy some autogenerated docs for a project of mine and I want to be able to have multiple versions of those docs at once. I have this mostly solved by using
target-folder
, but I also want to maintain two symlinks to thelatest
andstable
versions.Namely I want to be able to do the following:
/docs
folder.gh-pages
branch and copy/docs
into the specifiedtarget-dir
.latest
andstable
symlinks. <-- This is the step that's missing.My naïve solution would be to add an optional
pre-commit
option that is executed as a script before committing.Beta Was this translation helpful? Give feedback.
All reactions