Skip to content

Commit 41fb98b

Browse files
authored
Merge branch 'main' into feature/packages-translations
2 parents e354a93 + ec9e33c commit 41fb98b

File tree

4,873 files changed

+45429
-1538877
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,873 files changed

+45429
-1538877
lines changed

.all-contributorsrc

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,6 @@
151151
"translation"
152152
]
153153
},
154-
{
155-
"login": "janakeks",
156-
"name": "Jana Brot",
157-
"avatar_url": "https://avatars.githubusercontent.com/u/42347662?v=4",
158-
"profile": "https://catch-life.com",
159-
"contributions": [
160-
"business"
161-
]
162-
},
163154
{
164155
"login": "milotype",
165156
"name": "Milo Ivir",
@@ -184,7 +175,8 @@
184175
"avatar_url": "https://avatars.githubusercontent.com/u/46410174?v=4",
185176
"profile": "https://allcontributors.org",
186177
"contributions": [
187-
"tool"
178+
"tool",
179+
"doc"
188180
]
189181
},
190182
{
@@ -376,6 +368,33 @@
376368
"contributions": [
377369
"code"
378370
]
371+
},
372+
{
373+
"login": "momostafa",
374+
"name": "momostafa",
375+
"avatar_url": "https://avatars.githubusercontent.com/u/12662539?v=4",
376+
"profile": "https://github.com/momostafa",
377+
"contributions": [
378+
"question"
379+
]
380+
},
381+
{
382+
"login": "chris-ware",
383+
"name": "Chris Ware",
384+
"avatar_url": "https://avatars.githubusercontent.com/u/19684457?v=4",
385+
"profile": "https://github.com/chris-ware",
386+
"contributions": [
387+
"code"
388+
]
389+
},
390+
{
391+
"login": "morphsites-limited",
392+
"name": "morphsites®",
393+
"avatar_url": "https://avatars.githubusercontent.com/u/13981922?v=4",
394+
"profile": "https://www.morphsites.com/",
395+
"contributions": [
396+
"code"
397+
]
379398
}
380399
],
381400
"contributorsPerLine": 7,

.github/scripts/changelog-parser.php

Lines changed: 0 additions & 68 deletions
This file was deleted.

.github/scripts/changelog-updater.php

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/cleanup-empty-translations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313

1414
- name: Setup PHP
1515
uses: shivammathur/setup-php@v2
@@ -20,7 +20,7 @@ jobs:
2020
run: php .github/scripts/cleanup-empty-translations.php
2121

2222
- name: Commit changes
23-
uses: stefanzweifel/git-auto-commit-action@v5
23+
uses: stefanzweifel/git-auto-commit-action@v7
2424
with:
2525
push_options: --force
2626
commit_message: Cleanup translations

.github/workflows/codacy-coverage.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

.github/workflows/code-climate.yml

Lines changed: 0 additions & 70 deletions
This file was deleted.

.github/workflows/monorepo-split-packages.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
env:
99
GITHUB_TOKEN: ${{ secrets.BOT }}
10-
CORE_VERSION: "^3.1.1"
10+
CORE_VERSION: "^3.1.3"
1111

1212
jobs:
1313
packages_split:
@@ -82,15 +82,15 @@ jobs:
8282

8383

8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686

87-
# Search and replace "moox/core": "*" with "moox/core": "^3.1.1" in composer.json
87+
# Search and replace "moox/core": "*" with "moox/core": "^3.1.3" in composer.json
8888
- name: Replace core version in composer.json
8989
working-directory: packages/${{ matrix.package }}
9090
run: |
9191
if [ -f composer.json ]; then
9292
echo "Updating moox/core version in ${{ matrix.package }}"
93-
sed -i 's/"moox\/core": "\*"/"moox\/core": "^3.1.1"/g' composer.json
93+
sed -i 's/"moox\/core": "\*"/"moox\/core": "^3.1.3"/g' composer.json
9494
fi
9595
9696
# Commit the updated composer.json (if there was a change)
@@ -101,11 +101,11 @@ jobs:
101101
git config --global user.name "mooxbot"
102102
git config --global user.email "bot@moox.org"
103103
git add composer.json
104-
git commit -m "Update moox/core dependency to ^3.1.1" || echo "No changes to commit"
104+
git commit -m "Update moox/core dependency to ^3.1.3" || echo "No changes to commit"
105105
fi
106106
107107
- if: ${{ !startsWith(github.ref, 'refs/tags/') }}
108-
uses: "symplify/monorepo-split-github-action@v2.3.0"
108+
uses: "symplify/monorepo-split-github-action@v2.4.0"
109109
with:
110110
tag: ${GITHUB_REF#refs/tags/}
111111

0 commit comments

Comments
 (0)