Skip to content

Commit 3283da6

Browse files
Merge pull request #291 from ClojureCivitas/column-combos
testing limited rebuild
2 parents 9e0902b + 029d170 commit 3283da6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/render-and-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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"

src/data_visualization/aog/column_combinations.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
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]

0 commit comments

Comments
 (0)