-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
202 changed files
with
9,554 additions
and
3,872 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# csfieldguide/build/* | ||
# csfieldguide/temp/* | ||
# csfieldguide/node_modules/* | ||
csfieldguide/build/ | ||
csfieldguide/node_modules/ | ||
artifacts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "npm" | ||
directory: "/csfieldguide/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Synchronise with Crowdin | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 3 * * *' | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | ||
|
||
jobs: | ||
synchronise-with-crowdin: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Upload or update source files to Crowdin | ||
uses: crowdin/github-action@1.3.2 | ||
with: | ||
upload_sources: true | ||
|
||
- name: Download German translations | ||
uses: crowdin/github-action@1.3.2 | ||
with: | ||
upload_sources: false | ||
download_translations: true | ||
download_language: 'de' | ||
skip_untranslated_files: true | ||
export_only_approved: true | ||
push_translations: true | ||
commit_message: 'Update German Crowdin translations by Github Action' | ||
localization_branch_name: translation-de | ||
create_pull_request: true | ||
pull_request_title: 'Update German language translations' | ||
pull_request_body: 'This pull request will add/update German language files from Crowdin.' | ||
pull_request_labels: 'internationalization' | ||
pull_request_base_branch_name: develop | ||
config: crowdin.yaml | ||
|
||
- name: Download Spanish translations | ||
uses: crowdin/github-action@1.3.2 | ||
with: | ||
upload_sources: false | ||
download_translations: true | ||
download_language: 'es-ES' | ||
skip_untranslated_files: true | ||
export_only_approved: true | ||
push_translations: true | ||
commit_message: 'Update Spanish Crowdin translations by Github Action' | ||
localization_branch_name: translation-es | ||
create_pull_request: true | ||
pull_request_title: 'Update Spanish language translations' | ||
pull_request_body: 'This pull request will add/update Spanish language files from Crowdin.' | ||
pull_request_labels: 'internationalization' | ||
pull_request_base_branch_name: develop | ||
config: crowdin.yaml |
Oops, something went wrong.