Skip to content

Commit

Permalink
Merge branch 'main' into feat/debounce-handler
Browse files Browse the repository at this point in the history
  • Loading branch information
aleclarson authored Jul 13, 2024
2 parents 1de9de9 + bbf5810 commit 10a9794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ commit_parsers = [
{ message = "^perf", group = "<!-- 07 -->Performance" },
{ message = "^(fix|chore).perf.:", group = "<!-- 07 -->Performance", scope = "" },
{ message = "^(build|chore|ci|docs|refactor|test|style)", skip = true },
{ message = "^Revert", skip = true },
{ message = "^.*\\(types\\):", group = "<!-- 08 -->Types", scope = "" },
{ message = "^fix", group = "<!-- 06 -->Fixed" },
{ message = "^.*: (add|support)", group = "<!-- 03 -->Added" },
Expand Down
2 changes: 1 addition & 1 deletion scripts/weigh-changed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ PREV_SIZES=()

# Collect previous sizes if there are no uncommitted changes or it's CI.
if [ -n "$CI" ] || [ -z "$(git status -s)" ]; then
git checkout "$TARGET_BRANCH"
git checkout "$TARGET_BRANCH" &> /dev/null

i=0
for file in "${FILE_NAMES[@]}"; do
Expand Down

0 comments on commit 10a9794

Please sign in to comment.