diff --git a/.github/workflows/open_pull_request.yml b/.github/workflows/open_pull_request.yml index dabbeb6b..89207b5a 100644 --- a/.github/workflows/open_pull_request.yml +++ b/.github/workflows/open_pull_request.yml @@ -20,11 +20,11 @@ jobs: - name: Open pull request uses: repo-sync/pull-request@v2 with: - destination_branch: 'main' - pr_title: 'chore: ${{ env.MESSAGE }}' + destination_branch: "main" + pr_title: "chore: ${{ env.MESSAGE }}" pr_body: | This pull request will ${{ env.MESSAGE }}. - + ## Dependencies before merge - [ ] https://github.com/revanced/revanced-integrations diff --git a/.github/workflows/pull_strings.yml b/.github/workflows/pull_strings.yml index 1eae85fd..e30bc10e 100644 --- a/.github/workflows/pull_strings.yml +++ b/.github/workflows/pull_strings.yml @@ -1,35 +1,35 @@ name: Pull strings on: - workflow_dispatch: - schedule: - - cron: 0 0 1 * * + workflow_dispatch: + schedule: + - cron: 0 0 1 * * jobs: - pull: - name: Pull strings - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ref: dev + pull: + name: Pull strings + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: dev - - name: Pull strings - uses: crowdin/github-action@v1 - with: - config: crowdin.yml - download_translations: true - localization_branch_name: feat/translations - create_pull_request: true - pull_request_title: "chore: Sync translations" - pull_request_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)" - pull_request_base_branch_name: "dev" - commit_message: "chore: Sync translations" - github_user_name: revanced-bot - github_user_email: github@revanced.app - env: - GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} - CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} - CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} + - name: Pull strings + uses: crowdin/github-action@v1 + with: + config: crowdin.yml + download_translations: true + localization_branch_name: feat/translations + create_pull_request: true + pull_request_title: "chore: Sync translations" + pull_request_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)" + pull_request_base_branch_name: "dev" + commit_message: "chore: Sync translations" + github_user_name: revanced-bot + github_user_email: github@revanced.app + env: + GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/.github/workflows/push_strings.yml b/.github/workflows/push_strings.yml index cbf1ad90..e7814025 100644 --- a/.github/workflows/push_strings.yml +++ b/.github/workflows/push_strings.yml @@ -6,25 +6,24 @@ on: branches: - dev paths: - - /src/main/resources/addresources/values/strings.xml + - src/main/resources/addresources/values/strings.xml jobs: - push: - name: Push strings - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - ref: dev + push: + name: Push strings + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 - - name: Push strings - uses: crowdin/github-action@v1 - with: - config: crowdin.yml - upload_sources: true - env: - GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} - CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} - CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} + - name: Push strings + uses: crowdin/github-action@v1 + with: + config: crowdin.yml + upload_sources: true + env: + GITHUB_TOKEN: ${{ secrets.REPOSITORY_PUSH_ACCESS }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}