mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-10 01:01:56 +01:00
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Pull strings
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: 0 0 1 * *
|
|
|
|
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: dev
|
|
|
|
- name: Pull strings
|
|
uses: crowdin/github-action@v2
|
|
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.GITHUB_TOKEN }}
|
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|