We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74fa59b commit a909acfCopy full SHA for a909acf
1 file changed
pr-comment/entrypoint.sh
@@ -28,6 +28,16 @@ if [ "$composed" = "true" ]; then
28
flags="$flags -c"
29
fi
30
31
+# Debug: show git state
32
+echo "=== git log --oneline -5 ==="
33
+git log --oneline -5 || true
34
+echo "=== git branch -a ==="
35
+git branch -a || true
36
+echo "=== git show origin/main:simple.yaml (first 5 lines) ==="
37
+git show origin/main:simple.yaml 2>&1 | head -5 || true
38
+echo "=== git show HEAD:simple.yaml (first 5 lines) ==="
39
+git show HEAD:simple.yaml 2>&1 | head -5 || true
40
+
41
# Run oasdiff changelog with JSON output
42
if [ -n "$flags" ]; then
43
changelog=$(oasdiff changelog "$base" "$revision" --format json $flags)
0 commit comments