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
10 changes: 10 additions & 0 deletions .devenv/scripts/ci/run-act.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Runs the Jekyll CI workflow locally using act (https://github.com/nektos/act).
# Usage: .devenv/scripts/ci/run-act.sh [act options]
set -euo pipefail

cd "$(git rev-parse --show-toplevel)"

exec act push \
--job build \
"$@"
6 changes: 3 additions & 3 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
# https://github.com/ruby/setup-ruby/releases/tag/v1.207.0
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4
# https://github.com/ruby/setup-ruby/releases/tag/v1.305.0
uses: ruby/setup-ruby@c4e5b1316158f92e3d49443a9d58b31d25ac0f8f
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
ruby-version: '3.3.11' # Not needed with a .ruby-version file
Copy link

Copilot AI Apr 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline note says ruby-version is “Not needed with a .ruby-version file”, but the repository doesn’t currently include a .ruby-version. Either add a .ruby-version (to keep local dev/CI in sync) or adjust/remove this comment to avoid misleading future edits.

Suggested change
ruby-version: '3.3.11' # Not needed with a .ruby-version file
ruby-version: '3.3.11'

Copilot uses AI. Check for mistakes.
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ GEM
rexml (>= 3.3.9)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
liquid (4.0.4)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
Expand Down Expand Up @@ -72,4 +72,4 @@ DEPENDENCIES
jekyll (~> 4.4.1)

BUNDLED WITH
4.0.8
4.0.10
Loading