Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 3 additions & 6 deletions src/components/home/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ body:has(.page-wrapper.animating) {

.main-content {
flex: 1;
}

.animating .main-content {
overflow: hidden;
}

Expand Down Expand Up @@ -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;
}
Expand Down