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
1 change: 1 addition & 0 deletions .github/workflows/build-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
types: [opened, synchronize]
paths-ignore:
- scripts/**
workflow_dispatch:
jobs:
check-build-success:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/build-lambda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
paths:
- scripts/**
workflow_dispatch:
jobs:
push-artifacts-to-s3:
runs-on: ubuntu-latest
Expand All @@ -25,7 +26,9 @@ jobs:
with:
python-version: "3.13"
- name: Install UV
run: pip install uv
uses: astral-sh/setup-uv@v6
with:
working-directory: scripts
Comment on lines +30 to +31
Copy link

Copilot AI Oct 13, 2025

Choose a reason for hiding this comment

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

The working-directory parameter is not a valid input for the astral-sh/setup-uv action. This action doesn't support a working-directory parameter. If you need to run UV commands in a specific directory, use the run step with working-directory or change to the directory within the run command.

Suggested change
with:
working-directory: scripts

Copilot uses AI. Check for mistakes.
- name: Build Lambda
run: |
# Create build directory
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/push-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
paths-ignore:
- scripts/**
- README.md
workflow_dispatch:
jobs:
push-artifacts-to-s3:
runs-on: ubuntu-latest
Expand Down