From 673349b2586b68e79bcebd6bcd266d8a1426ef9c Mon Sep 17 00:00:00 2001 From: "m::r" Date: Thu, 15 Jan 2026 23:08:06 +0000 Subject: [PATCH] feat(table): enable scroll after animation - also test feat commit handling in pipeline --- .github/workflows/pipeline.yml | 8 ++++++-- src/components/home/styles.css | 9 +++------ 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 999bc37..12b1110 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -40,13 +40,17 @@ jobs: COMMIT_MSG=$(git log -1 --pretty=%B) echo "Commit message: $COMMIT_MSG" - # Determine bump type from commit message + # Determine bump type from commit message or branch name + # Extract branch name from merge commit if applicable + BRANCH_NAME=$(echo "$COMMIT_MSG" | grep -oE 'from [^/]+/([^ ]+)' | sed 's/from [^/]*\///' || echo "") + echo "Detected branch: $BRANCH_NAME" + if echo "$COMMIT_MSG" | grep -qiE '\[major\]|BREAKING:|BREAKING CHANGE:'; then BUMP_TYPE="major" MAJOR=$((MAJOR + 1)) MINOR=0 PATCH=0 - elif echo "$COMMIT_MSG" | grep -qiE '\[minor\]|^feat:|^feat\('; then + elif echo "$COMMIT_MSG" | grep -qiE '\[minor\]|^feat:|^feat\(' || echo "$BRANCH_NAME" | grep -qiE '^feat/|^feature/'; then BUMP_TYPE="minor" MINOR=$((MINOR + 1)) PATCH=0 diff --git a/src/components/home/styles.css b/src/components/home/styles.css index cc83984..032b2ef 100644 --- a/src/components/home/styles.css +++ b/src/components/home/styles.css @@ -16,6 +16,9 @@ body:has(.page-wrapper.animating) { .main-content { flex: 1; +} + +.animating .main-content { overflow: hidden; } @@ -341,18 +344,12 @@ body:has(.page-wrapper.animating) { } /* Hide scrollbars on table during animation */ -.table-responsive { - overflow: hidden !important; -} - -.animating .leaderboard-table, .animating .table-responsive { overflow: hidden !important; scrollbar-width: none; -ms-overflow-style: none; } -.animating .leaderboard-table::-webkit-scrollbar, .animating .table-responsive::-webkit-scrollbar { display: none; }