mirror of
https://github.com/revanced/revanced-patches
synced 2025-01-06 23:45:48 +01:00
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: Pull strings
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 */8 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
pull:
|
|
name: Pull strings
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
ref: feat/translations
|
|
|
|
- name: Pull strings
|
|
uses: crowdin/github-action@v2
|
|
with:
|
|
config: crowdin.yml
|
|
upload_sources: false
|
|
download_translations: true
|
|
localization_branch_name: feat/translations
|
|
create_pull_request: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
|
|
|
- name: Open pull request
|
|
if: github.event_name == 'workflow_dispatch'
|
|
uses: repo-sync/pull-request@v2
|
|
with:
|
|
source_branch: feat/translations
|
|
destination_branch: dev
|
|
pr_title: "chore: Sync translations"
|
|
pr_body: "Sync translations from [crowdin.com/project/revanced](https://crowdin.com/project/revanced)"
|