chore(deps): update dependency @sentry/react-native to ^5.31.1 #14477
Workflow file for this run
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
name: Check translation files | |
on: | |
# Run on pull request and merge queue | |
pull_request: | |
merge_group: | |
# Cancel any in progress run of the workflow for a given PR | |
# This avoids building outdated code | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
check-translation-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
locales/*/translation.json | |
ios/celo/*.lproj/InfoPlist.strings | |
files_ignore: | | |
locales/base/translation.json | |
ios/celo/Base.lproj/InfoPlist.strings | |
- name: Fail if translation files are changed | |
if: ${{ (github.event_name != 'merge_group') && (github.head_ref != 'l10n/main') && (steps.changed-files.outputs.any_changed == 'true') }} | |
run: | | |
echo "❌ Only the base translation files should be modified in non-Crowdin PR's!" | |
echo "These translation files should not have been modified:" | |
echo ${{ steps.changed-files.outputs.all_changed_files }} | |
exit 1 |