We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44abc97 commit 33cda55Copy full SHA for 33cda55
.gitea/workflows/render-manifests-merge.yaml
@@ -69,8 +69,8 @@ jobs:
69
70
RENDER_DIR=()
71
72
- echo ">> Checking for changes ..."
73
- GIT_DIFF=$(git diff --name-only ${{ gitea.event.before }}..HEAD | xargs -I {} dirname {} | sort -u | grep "clusters/cl01tl/helm/")
+ echo ">> Checking for changes from HEAD^..HEAD ..."
+ GIT_DIFF=$(git diff --name-only HEAD^..HEAD | xargs -I {} dirname {} | sort -u | grep "clusters/cl01tl/helm/")
74
75
if [ -n "${GIT_DIFF}" ]; then
76
echo ">> Changes detected:"
0 commit comments