Skip to content

Commit

Permalink
📜 Lock the slides Weblate component (#6138)
Browse files Browse the repository at this point in the history
This PR removes the `slides` component from the scripts that lock/unlock Weblate components. The component should remain permanently locked until we update its structure.

Fixes  #6137

**How to test**
The component should be visible on Weblate, so that all contributors can see their work, but it should be locked.
  • Loading branch information
boryanagoncharenko authored Jan 28, 2025
1 parent 5b17e97 commit 09e73ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/resolve-weblate-conflict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Prevent updates and merge conflicts until merged
run: |
# Have to lock each component individually. Not in the UI, but using the CLI we do.
for component in glossary adventures keywords client-messages web-texts webpages slides; do
for component in glossary adventures keywords client-messages web-texts webpages; do
wlc lock hedy/$component
done
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unlock-weblate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- run: |
# Have to lock each component individually. Not in the UI, but using the CLI we do.
set -x
for component in glossary adventures keywords client-messages web-texts webpages slides; do
for component in glossary adventures keywords client-messages web-texts webpages; do
wlc --debug unlock hedy/$component | sed 's/${{ secrets.WEBLATE_API_KEY }}/*****/g'
done
echo "All components unlocked!"
4 changes: 2 additions & 2 deletions .github/workflows/update-weblate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
# Have to lock each component individually. Not in the UI, but using the CLI we do.
# (NOTE: this list is also below!)
for component in glossary adventures keywords client-messages web-texts webpages slides; do
for component in glossary adventures keywords client-messages web-texts webpages; do
wlc lock hedy/$component
done
Expand All @@ -83,7 +83,7 @@ jobs:
# Unlock each component again so we don't stay locked
# (NOTE: this list is also above!)
for component in glossary adventures keywords client-messages web-texts webpages slides; do
for component in glossary adventures keywords client-messages web-texts webpages; do
wlc unlock hedy/$component
done
Expand Down

0 comments on commit 09e73ae

Please sign in to comment.