From 4882f81f153ecfb1b7f8c17983e025b9396d7afe Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Sun, 3 Mar 2024 16:26:17 +0000 Subject: [PATCH] chore: remove sync crowdin workflow --- .../workflows/sync-translated-documents.yml | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/sync-translated-documents.yml diff --git a/.github/workflows/sync-translated-documents.yml b/.github/workflows/sync-translated-documents.yml deleted file mode 100644 index 4848a13e..00000000 --- a/.github/workflows/sync-translated-documents.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Sync Translations - -on: - workflow_dispatch: - schedule: - - cron: "0 0 * * *" - -jobs: - sync-translated-documents: - runs-on: ubuntu-latest - if: github.repository == 'go-task/task' - steps: - - uses: actions/checkout@v3 - - - name: Install Task - uses: arduino/setup-task@v1 - with: - version: 3.x - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Sync Translations - run: task crowdin:pull - env: - CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} - working-directory: ./docs - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v4 - with: - commit-message: "chore: sync translations" - title: "chore: sync translations" - branch: chore/sync-translations - delete-branch: true - author: task-bot <106601941+task-bot@users.noreply.github.com> - labels: "area: translation" - token: ${{ secrets.GH_PAT }}