Add vcs (git) hook settings in imagrc example
This commit is contained in:
parent
2562b705b8
commit
7776e95345
1 changed files with 24 additions and 8 deletions
32
imagrc.toml
32
imagrc.toml
|
@ -12,25 +12,41 @@ implicit-create = false
|
||||||
# store, so these hooks should be chosen carefully.
|
# store, so these hooks should be chosen carefully.
|
||||||
store-unload-hook-aspects = [ "debug" ]
|
store-unload-hook-aspects = [ "debug" ]
|
||||||
|
|
||||||
pre-create-hook-aspects = [ "debug" ]
|
pre-create-hook-aspects = [ "debug", "vcs" ]
|
||||||
post-create-hook-aspects = [ "debug" ]
|
post-create-hook-aspects = [ "debug", "vcs" ]
|
||||||
|
|
||||||
pre-move-hook-aspects = [ "debug" ]
|
pre-move-hook-aspects = [ "debug" ]
|
||||||
post-move-hook-aspects = [ "debug" ]
|
post-move-hook-aspects = [ "debug" ]
|
||||||
|
|
||||||
pre-retrieve-hook-aspects = [ "debug" ]
|
pre-retrieve-hook-aspects = [ "debug", "vcs" ]
|
||||||
post-retrieve-hook-aspects = [ "debug" ]
|
post-retrieve-hook-aspects = [ "debug", "vcs" ]
|
||||||
|
|
||||||
pre-update-hook-aspects = [ "debug" ]
|
pre-update-hook-aspects = [ "debug", "vcs" ]
|
||||||
post-update-hook-aspects = [ "debug" ]
|
post-update-hook-aspects = [ "debug", "vcs" ]
|
||||||
|
|
||||||
pre-delete-hook-aspects = [ "debug" ]
|
pre-delete-hook-aspects = [ "debug", "vcs" ]
|
||||||
post-delete-hook-aspects = [ "debug" ]
|
post-delete-hook-aspects = [ "debug", "vcs" ]
|
||||||
|
|
||||||
[store.aspects.debug]
|
[store.aspects.debug]
|
||||||
parallel = false
|
parallel = false
|
||||||
mutable_hooks = true
|
mutable_hooks = true
|
||||||
|
|
||||||
|
[store.aspects.vcs]
|
||||||
|
parallel = false
|
||||||
|
mutable_hooks = false
|
||||||
|
|
||||||
[store.hooks.stdhook_debug]
|
[store.hooks.stdhook_debug]
|
||||||
aspect = "debug"
|
aspect = "debug"
|
||||||
|
|
||||||
|
[store.hooks.stdhook_git_create]
|
||||||
|
aspect = "vcs"
|
||||||
|
|
||||||
|
[store.hooks.stdhook_git_delete]
|
||||||
|
aspect = "vcs"
|
||||||
|
|
||||||
|
[store.hooks.stdhook_git_retrieve]
|
||||||
|
aspect = "vcs"
|
||||||
|
|
||||||
|
[store.hooks.stdhook_git_update]
|
||||||
|
aspect = "vcs"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue