Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds manual workflow triggering capabilities and updates UV installation method in GitHub Actions workflows. The changes enable workflows to be manually dispatched and modernize the UV package manager setup.
- Added
workflow_dispatchtrigger to enable manual execution of workflows - Updated UV installation from pip to use the official astral-sh/setup-uv action
- Configured UV setup with proper working directory for the scripts folder
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/push-artifacts.yaml | Added workflow_dispatch trigger for manual execution |
| .github/workflows/build-lambda.yaml | Added workflow_dispatch trigger and updated UV installation method |
| .github/workflows/build-check.yaml | Added workflow_dispatch trigger for manual execution |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| with: | ||
| working-directory: scripts |
There was a problem hiding this comment.
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.
| with: | |
| working-directory: scripts |
No description provided.