File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/data_visualization/aog Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,14 @@ jobs:
8282 set -euo pipefail
8383 git fetch origin main:refs/remotes/origin/main
8484 # Get the commit of the previous successful run (where the artifact came from)
85- latest_run =$(gh api "/repos/$REPO/actions/workflows/render-and-publish.yml/runs?branch=main&status=success&per_page=1" --jq '.workflow_runs[0].head_commit' || true)
86- if [ -z "${latest_run :-}" ] || [ "${latest_run }" = "null" ]; then
85+ latest_commit =$(gh api "/repos/$REPO/actions/workflows/render-and-publish.yml/runs?branch=main&status=success&per_page=1" --jq '.workflow_runs[0].head_commit.id ' || true)
86+ if [ -z "${latest_commit :-}" ] || [ "${latest_commit }" = "null" ]; then
8787 echo "No previous commit found; doing full rebuild."
8888 echo "files=" >> "$GITHUB_OUTPUT"
8989 exit 0
9090 fi
91- echo "Comparing against previous artifact commit: $latest_run "
92- changed=$(git diff --name-only --diff-filter=ACMR "$latest_run " HEAD -- 'src/**/*.clj' | tr '\n' ' ')
91+ echo "Comparing against previous artifact commit: $latest_commit "
92+ changed=$(git diff --name-only --diff-filter=ACMR "$latest_commit " HEAD -- 'src/**/*.clj' | tr '\n' ' ')
9393 if [ -z "$changed" ]; then
9494 echo "No changed Clojure sources detected."
9595 echo "files=" >> "$GITHUB_OUTPUT"
Original file line number Diff line number Diff line change 77 :description " Can we plot interesting charts for all columns of a dataset?"
88 :category :data-visualization
99 :tags [:datavis :clay ]
10- :keywords [:datavis :data :summaries ]}}}
10+ :keywords [:datavis ]}}}
1111(ns data-visualization.aog.column-combinations
1212 (:require
1313 [clojure.string :as str]
You can’t perform that action at this time.
0 commit comments