-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add getTranslationProgress github action
commit first data fetch of translation progress
- Loading branch information
Showing
3 changed files
with
553 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Update Crowdin translation progression | ||
|
||
on: | ||
schedule: | ||
- cron: "20 16 * * FRI" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
create_pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Install ts-node | ||
run: yarn global add ts-node | ||
|
||
- name: Set up git | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Action" | ||
- name: Generate timestamp and readable date | ||
id: date | ||
run: | | ||
echo "TIMESTAMP=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV | ||
echo "READABLE_DATE=$(date +'%B %-d')" >> $GITHUB_ENV | ||
- name: Fetch latest dev and create new branch | ||
run: | | ||
git fetch origin dev | ||
git checkout -b "automated-update-${{ env.TIMESTAMP }}" origin/dev | ||
- name: Run script | ||
run: npx ts-node -O '{"module":"commonjs"}' ./src/scripts/crowdin/getTranslationProgress.ts | ||
env: | ||
CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }} | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
|
||
- name: Commit and push | ||
run: | | ||
git add -A | ||
git commit -m "Update Crowdin translation progress" | ||
git push origin "automated-update-${{ env.TIMESTAMP }}" | ||
- name: Create PR body | ||
run: | | ||
echo "This PR was automatically created to update Crowdin translation progress." > pr_body.txt | ||
echo "This workflows runs every Friday at 16:20 (UTC)." >> pr_body.txt | ||
echo "" >> pr_body.txt | ||
echo "Thank you to everyone contributing to translate ethereum.org ❤️" >> pr_body.txt | ||
- name: Create Pull Request | ||
run: | | ||
gh auth login --with-token <<< ${{ secrets.GITHUB_TOKEN }} | ||
gh pr create --base dev --head "automated-update-${{ env.TIMESTAMP }}" --title "Update translation progress from Crowdin - ${{ env.READABLE_DATE }}" --body-file pr_body.txt |
Oops, something went wrong.