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 playbooks/roles/edxapp/tasks/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
- name: "Pull translations using Atlas"
shell: |
source "{{ edxapp_venv_dir }}/bin/activate"
export ATLAS_OPTIONS="--repository=edx/openedx-translations --revision=main"
Copy link

Copilot AI Dec 15, 2025

Choose a reason for hiding this comment

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

The PR description states the intention is to "use our fork of openedx translations," but the repository specified here is "edx/openedx-translations" which appears to be the upstream repository, not a fork. If the goal is to use a forked version, the repository should be changed to point to your organization's fork (e.g., "yourorg/openedx-translations"). Please verify this is the correct repository reference.

Suggested change
export ATLAS_OPTIONS="--repository=edx/openedx-translations --revision=main"
export ATLAS_OPTIONS="--repository=yourorg/openedx-translations --revision=main"

Copilot uses AI. Check for mistakes.
make pull_translations
args:
executable: /usr/bin/bash
Expand Down