-
|
Before Renovate runs its checks, I want to execute the command: kcl run -o main.yaml. I have tried achieving this using .git-template/hooks, but without success. $ cat .github/renovate-entrypoint.sh
#!/bin/bash
apt update
bash <(curl -sL https://kcl-lang.io/script/install-cli.sh) 0.9.7
echo ---
find / | grep -i main.k
echo ---
mkdir -p ~/.git-templates/hooks
cat<<EOF | tee ~/.git-templates/hooks/post-checkout
#!/bin/bash
kcl run -o main.yaml
EOF
chmod +x ~/.git-templates/hooks/post-checkout
git config --global init.templateDir ~/.git-templates
runuser -u ubuntu renovateIs there a way to specify a command to run after the source is checked out but before the checks are executed? |
Beta Was this translation helpful? Give feedback.
Answered by
rarkins
Feb 12, 2025
Replies: 1 comment
-
|
No such capability exists. For more questions like this, please post in renovatebot/renovate |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
metacoma
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No such capability exists. For more questions like this, please post in renovatebot/renovate