Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD python3 -c "import os,sys; sys.exit(0 if os.path.exists('/action/workspace/contributors.py') else 1)"

ENV PYTHONUNBUFFERED=1
ENV UV_LINK_MODE=copy
Comment on lines 30 to +31
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

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

This introduces a new environment variable (UV_LINK_MODE) in the action image. Per the repo guideline to document environment variable changes in README.md, please add a short note explaining why this is set (suppress hardlink warning when cache/venv are on different filesystems) and its impact (forces copy mode).

Copilot uses AI. Check for mistakes.

CMD ["/action/workspace/contributors.py"]
ENTRYPOINT ["uv", "run", "--no-dev", "--project", "/action/workspace"]
Loading