-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Merge 4.47.0 into master (#5611)
- Loading branch information
1 parent
e742288
commit d34ff3d
Showing
334 changed files
with
27,200 additions
and
13,359 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: organize translations | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'app/i18n/locales/**.json' | ||
|
||
jobs: | ||
organize-and-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Run script to organize JSON keys | ||
run: node scripts/organize-translations.js | ||
|
||
- name: Get changed files | ||
id: git-check | ||
uses: tj-actions/changed-files@v42 | ||
with: | ||
files: | | ||
**.json | ||
- name: List all changed files | ||
if: steps.git-check.outputs.any_changed == 'true' | ||
env: | ||
ALL_CHANGED_FILES: ${{ steps.git-check.outputs.all_changed_files }} | ||
run: | | ||
for file in ${ALL_CHANGED_FILES}; do | ||
echo "$file was changed" | ||
done | ||
- name: Commit and push if changes | ||
if: steps.git-check.outputs.any_changed == 'true' | ||
uses: EndBug/add-and-commit@v9 | ||
with: | ||
message: 'action: organized translations' |
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 was deleted.
Oops, something went wrong.
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,3 @@ | ||
export default { | ||
openPicker: jest.fn().mockImplementation(() => Promise.resolve()) | ||
}; |
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 was deleted.
Oops, something went wrong.
12 changes: 6 additions & 6 deletions
12
__tests__/containers/List/__snapshots__/List.stories.storyshot
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.