forked from pimcore/pimcore
-
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 branch 'pimcore:11.x' into 11.x
- Loading branch information
Showing
1,196 changed files
with
15,004 additions
and
31,515 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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
name: CLA check | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
pull_request_target: | ||
types: [opened, closed, synchronize] | ||
|
||
jobs: | ||
cla-workflow: | ||
uses: pimcore/workflows-collection-public/.github/workflows/[email protected] | ||
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' | ||
secrets: | ||
CLA_ACTION_ACCESS_TOKEN: ${{ secrets.CLA_ACTION_ACCESS_TOKEN }} |
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,25 @@ | ||
name: "Composer outdated check - monthly minor check" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 7 1 * *' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
composer-checks: | ||
uses: pimcore/workflows-collection-public/.github/workflows/reusable-composer-checks.yaml@main | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- { php-version: 8.3, branch: 11.x } | ||
- { php-version: 8.3, branch: 11.3 } | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
branch: ${{ matrix.branch }} | ||
ignore-list: "public" | ||
version-type: "-m" | ||
secrets: inherit |
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,24 @@ | ||
name: "Composer vulnerabilities check" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 7 * * *' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
composer-checks: | ||
uses: pimcore/workflows-collection-public/.github/workflows/reusable-composer-vulnerabilities.yaml@main | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- { php-version: 8.3, branch: 11.x } | ||
- { php-version: 8.3, branch: 11.3 } | ||
with: | ||
php-version: ${{ matrix.php-version }} | ||
branch: ${{ matrix.branch }} | ||
ignore-list: "public" | ||
secrets: inherit |
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 |
---|---|---|
@@ -1,28 +1,24 @@ | ||
|
||
name: "PHP-CS-Fixer" | ||
|
||
on: | ||
push: | ||
branches: | ||
- "[0-9]+.[0-9]+" | ||
- "[0-9]+.x" | ||
- "*_actions" | ||
- "feature-*" | ||
pull_request_target: | ||
types: [ opened,synchronize ] | ||
|
||
permissions: | ||
contents: read | ||
contents: write | ||
|
||
jobs: | ||
php-cs-fixer: | ||
permissions: | ||
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: PHP-CS-Fixer | ||
uses: docker://oskarstark/php-cs-fixer-ga:latest | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Apply php-cs-fixer changes | ||
php-style: | ||
uses: pimcore/workflows-collection-public/.github/workflows/reusable-php-cs-fixer.yaml@main | ||
secrets: | ||
PHP_CS_FIXER_GITHUB_TOKEN: ${{ secrets.PHP_CS_FIXER_GITHUB_TOKEN }} | ||
with: | ||
head_ref: ${{ github.event.pull_request.head.ref }} | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
config_file: .php-cs-fixer.dist.php |
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
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
Oops, something went wrong.