Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
ada349a
feat: add shellcheck linting phase for run steps in compile pipeline
Copilot Aug 2, 2026
4c45621
feat: make shellcheck default-on, add --no-shellcheck, error in stric…
Copilot Aug 2, 2026
79eabdc
docs(adr): add draft ADR-49762 for default-on shellcheck in compile p…
github-actions[bot] Aug 2, 2026
7bb2651
Merge branch 'main' into copilot/extend-compile-with-linting
github-actions[bot] Aug 2, 2026
b614e0c
fix(shellcheck): gate NoEmit preflight, resolve shell defaults, sanit…
Copilot Aug 2, 2026
7a9a9b4
fix(shellcheck): use verbose flag for invocation output, strict mode …
Copilot Aug 2, 2026
6aefee1
chore: merge main into copilot/extend-compile-with-linting, integrate…
Copilot Aug 2, 2026
bec4429
fix: resolve merge conflicts, fix shellcheck warnings in workflows, a…
Copilot Aug 2, 2026
79f1058
chore: merge origin/main into copilot/extend-compile-with-linting
Copilot Aug 2, 2026
6921521
fix: merge main, fix SC2241 in daily-multi-device-docs-tester (garble…
Copilot Aug 2, 2026
5684138
Merge remote-tracking branch 'origin/main' into copilot/extend-compil…
Copilot Aug 2, 2026
4ef0d9f
Apply remaining changes
Copilot Aug 2, 2026
e7dcb48
Merge branch 'main' into copilot/extend-compile-with-linting
github-actions[bot] Aug 2, 2026
b0fa7ba
fix: use strings.EqualFold for shell comparison, fix model alias in p…
Copilot Aug 2, 2026
a263a42
fix: recompile workflows after model alias change in pr-code-quality-…
Copilot Aug 2, 2026
329f607
Merge branch 'main' into copilot/extend-compile-with-linting
github-actions[bot] Aug 2, 2026
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
6 changes: 3 additions & 3 deletions .github/workflows/daily-byok-ollama-test.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .github/workflows/daily-byok-ollama-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ steps:
sleep 2
ollama serve &
echo "Waiting for Ollama service..."
for i in $(seq 1 30); do
for _ in $(seq 1 30); do
if curl -sf http://localhost:11434/api/version > /dev/null 2>&1; then
echo "Ollama is ready"
break
Expand All @@ -65,7 +65,7 @@ steps:

echo "Waiting for Ollama OpenAI-compatible endpoint..."
MAX_WAIT_SECONDS=30
for i in $(seq 1 "$MAX_WAIT_SECONDS"); do
for _ in $(seq 1 "$MAX_WAIT_SECONDS"); do
if curl -sf http://localhost:11434/v1/models > /dev/null 2>&1; then
echo "Ollama /v1/models is ready"
exit 0
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/daily-multi-device-docs-tester.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions .github/workflows/daily-multi-device-docs-tester.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pre-agent-steps:
env:
EXPR_GITHUB_WORKSPACE: ${{ github.workspace }}
run: |
cd "$EXPR_GITHUB_WORKSPACE/docs"
cd "$EXPR_GITHUB_WORKSPACE/docs" || exit 1
node ../scripts/ensure-docs-slide-pdf.js
- name: Configure Playwright CLI launch options
env:
Expand All @@ -92,7 +92,6 @@ pre-agent-steps:
run: |
PREFLIGHT_LOG="$EXPR_GITHUB_WORKSPACE/.playwright/preflight.log"
set +e
cd "$EXPR_GITHUB_WORKSPACE"
playwright-cli open --config "$EXPR_GITHUB_WORKSPACE/.playwright/cli.config.json" about:blank > "$PREFLIGHT_LOG" 2>&1
PREFLIGHT_STATUS=$?
playwright-cli close >> "$PREFLIGHT_LOG" 2>&1 || true
Expand All @@ -107,7 +106,7 @@ pre-agent-steps:
env:
EXPR_GITHUB_WORKSPACE: ${{ github.workspace }}
run: |
cd "$EXPR_GITHUB_WORKSPACE/docs"
cd "$EXPR_GITHUB_WORKSPACE/docs" || exit 1
npm install
npm run build
features:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs-noob-tester.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .github/workflows/docs-noob-tester.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ pre-agent-steps:
env:
EXPR_GITHUB_WORKSPACE: ${{ github.workspace }}
run: |
cd "$EXPR_GITHUB_WORKSPACE"
nohup make dev-docs > /tmp/gh-aw/agent/preview.log 2>&1 &
cd "$EXPR_GITHUB_WORKSPACE" || exit 1 > /tmp/gh-aw/agent/preview.log 2>&1 &
PID=$!
echo $PID > /tmp/gh-aw/agent/server.pid
echo "Server PID: $PID"
Expand Down
Loading
Loading