Skip to content

Commit 7f0e7ee

Browse files
committed
Merge branch 'main' into don-working
2 parents 376ebdb + 9389b4f commit 7f0e7ee

File tree

1,760 files changed

+190034
-68007
lines changed

Some content is hidden

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

1,760 files changed

+190034
-68007
lines changed

.commitlintrc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
2,
77
"always",
88
[
9+
"laravel",
910
"symfony",
1011
"doctrine",
1112
"metadata",
@@ -16,10 +17,12 @@
1617
"jsonapi",
1718
"graphql",
1819
"openapi",
20+
"parametervalidator",
1921
"serializer",
2022
"jsonschema",
2123
"validation",
22-
"state"
24+
"state",
25+
"test"
2326
]
2427
],
2528
"scope-empty": [
@@ -54,8 +57,7 @@
5457
[
5558
"sentence-case",
5659
"start-case",
57-
"pascal-case",
58-
"upper-case"
60+
"pascal-case"
5961
]
6062
],
6163
"subject-empty": [
@@ -83,7 +85,7 @@
8385
"build",
8486
"chore",
8587
"ci",
86-
"docs",
88+
"doc",
8789
"feat",
8890
"fix",
8991
"perf",

.gitattributes

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
/.editorconfig export-ignore
2-
/.gitattributes export-ignore
3-
/.github export-ignore
4-
/.gitignore export-ignore
5-
/.php_cs.dist export-ignore
1+
*.sh export-ignore
2+
.editorconfig export-ignore
3+
.gitattributes export-ignore
4+
.github export-ignore
5+
.gitignore export-ignore
6+
.php-cs-fixer.dist.php export-ignore
7+
phpstan.neon.dist export-ignore
8+
phpunit.xml.dist export-ignore
9+
/.commitlintrc export-ignore
610
/appveyor.yml export-ignore
711
/behat.yml.dist export-ignore
12+
/codecov.yml
813
/docs export-ignore
914
/features export-ignore
10-
/phpstan.neon.dist export-ignore
11-
/phpunit.xml.dist export-ignore
15+
/package-lock.json export-ignore
16+
/pmu.baseline
1217
/tests export-ignore
13-
/update-js.sh export-ignore
1418
/yarn.lock export-ignore

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/api_platform.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Distribution update
2+
3+
on:
4+
push:
5+
tags:
6+
- v*
7+
8+
env:
9+
GH_TOKEN: ${{ github.token }}
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
run-api-platform-workflow:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Update distribution
20+
run: gh workflow run -R api-platform/api-platfom release.yml -f tag=${{ github.ref_name }}
21+
22+

0 commit comments

Comments
 (0)