forked from onethumb/api-platform-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'v3.4.10' into don-working-3.4.10
v3.4.10
- Loading branch information
Showing
1,328 changed files
with
75,082 additions
and
36,402 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,14 +1,19 @@ | ||
/.editorconfig export-ignore | ||
/.gitattributes export-ignore | ||
/.github export-ignore | ||
/.gitignore export-ignore | ||
/.php_cs.dist export-ignore | ||
*.sh export-ignore | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.github export-ignore | ||
.gitignore export-ignore | ||
.php-cs-fixer.dist.php export-ignore | ||
phpstan.neon.dist export-ignore | ||
phpunit.xml.dist export-ignore | ||
phpunit10.xml.dist export-ignore | ||
/.commitlintrc export-ignore | ||
/appveyor.yml export-ignore | ||
/behat.yml.dist export-ignore | ||
/codecov.yml | ||
/docs export-ignore | ||
/features export-ignore | ||
/phpstan.neon.dist export-ignore | ||
/phpunit.xml.dist export-ignore | ||
/package-lock.json export-ignore | ||
/pmu.baseline | ||
/tests export-ignore | ||
/update-js.sh export-ignore | ||
/yarn.lock export-ignore |
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,19 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
run-api-platform-workflow: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Update distribution | ||
run: gh workflow run -R api-platform/api-platfom release.yml -f tag=${{ github.ref_name }} | ||
|
||
|
Oops, something went wrong.