Skip to content

Commit

Permalink
chore: update boostlook.css sync workflow, fix boostlook.rb syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
julioest committed Dec 17, 2024
1 parent 608c10d commit f8c7e6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sync-boostlook-css.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add static/css/boostlook.css
if ! git diff-index --quiet HEAD; then
git commit -m "chore: Update boostlook.css from boostlook repository [skip ci]"
git commit -m "chore: Update boostlook.css from boostlook repository"
git push origin develop
else
echo "No changes to commit. Skipping commit to develop."
Expand Down
2 changes: 1 addition & 1 deletion boostlook.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
isPinned = !isPinned;
localStorage.setItem('tocPinned', isPinned);
html.classList.toggle('toc-pinned', isPinned);
updateTocVisibility(isPinned); state
updateTocVisibility(isPinned);
});
tocButton.addEventListener("mouseenter", () => {
Expand Down

0 comments on commit f8c7e6c

Please sign in to comment.