hacktricks/.github/workflows/translate_es.yml

84 lines
2.5 KiB
YAML
Raw Normal View History

2023-06-01 11:01:49 +00:00
name: Translator to ES (Spanish)
on:
push:
branches:
- master
paths-ignore:
- 'scripts/**'
- '.gitignore'
- '.github/**'
workflow_dispatch:
jobs:
run-translation:
runs-on: ubuntu-latest
environment: prod
env:
LANGUAGE: Spanish
BRANCH: es
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0 #Needed to download everything to be able to access the master & language branches
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
2023-06-01 12:16:58 +00:00
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install openai tqdm
2023-06-01 11:01:49 +00:00
- name: Update & install wget & translator.py
run: |
2023-06-01 11:11:08 +00:00
sudo apt-get update
sudo apt-get install wget -y
2023-06-01 11:01:49 +00:00
mkdir scripts
cd scripts
wget https://raw.githubusercontent.com/carlospolop/hacktricks-cloud/master/scripts/translator.py
cd ..
- name: Download language branch #Make sure we have last version
run: |
2023-06-01 12:16:58 +00:00
git config --global user.name 'Translator'
2023-06-01 11:01:49 +00:00
git config --global user.email 'github-actions@github.com'
git checkout "$BRANCH"
git pull
git checkout master
- name: Run translation script on changed files
run: |
# Start a subshell with a timeout (5h)
timeout 18000s bash << 'EOF'
echo "Starting translations"
2023-06-01 12:17:53 +00:00
echo "Commit: 0afe4e4475ddd0e31b7b8957df1e0e9bb275b731"
2023-06-01 11:01:49 +00:00
# Export the OpenAI API key as an environment variable
export OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}
# Run the translation script on each changed file
2023-06-01 12:17:53 +00:00
git diff-tree --no-commit-id --name-only -r "0afe4e4475ddd0e31b7b8957df1e0e9bb275b731" | grep -v "SUMMARY.md" | while read -r file; do
2023-06-01 11:01:49 +00:00
if echo "$file" | grep -qE '\.md$'; then
2023-06-01 12:16:58 +00:00
PATHS="$file , $PATHS"
2023-06-01 11:01:49 +00:00
else
echo "Skipping $file"
fi
done
2023-06-01 12:16:58 +00:00
echo "Translating $PATHS"
2023-06-01 12:21:23 +00:00
python scripts/translator.py --language "$LANGUAGE" --branch "$BRANCH" --api-key "$OPENAI_API_KEY" -f "$PATHS"
2023-06-01 11:01:49 +00:00
EOF
- name: Commit and push changes
run: |
git checkout "$BRANCH"
git add -A
git commit -m "Translated $BRANCH files" || true
2023-06-01 11:28:45 +00:00
git push --set-upstream origin "$BRANCH"