Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/check_for_crowdin_updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ on:
schedule:
- cron: '0 0 * * 1' # Every Monday at 12:00 AM UTC, which is 10:00 AM Melbourne time (AEST)
workflow_dispatch:
inputs:
UPDATE_PULL_REQUESTS:
description: 'Create/update PR for QA/Desktop/iOS/Android'
required: true
type: boolean
default: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down Expand Up @@ -240,6 +246,7 @@ jobs:
name: Make Android PR
needs: [jobs_sync]
runs-on: ubuntu-latest
if: ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
steps:
- name: Checkout Repo Content
uses: actions/checkout@v4
Expand Down Expand Up @@ -270,6 +277,7 @@ jobs:
needs: [jobs_sync]
name: Make Desktop PR
runs-on: ubuntu-latest
if: ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
steps:
- name: Checkout Repo Content
uses: actions/checkout@v4
Expand Down Expand Up @@ -301,6 +309,7 @@ jobs:
needs: [jobs_sync]
name: Make iOS PR
runs-on: ubuntu-latest
if: ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
steps:
- name: Checkout Repo Content
uses: actions/checkout@v4
Expand Down Expand Up @@ -331,6 +340,7 @@ jobs:
needs: [jobs_sync]
name: Make QA PR (Appium)
runs-on: ubuntu-latest
if: ${{ inputs.UPDATE_PULL_REQUESTS == 'true' }}
steps:
- name: Checkout Repo Content
uses: actions/checkout@v4
Expand Down