-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.4-develop' into 2.4-develop-upstream
- Loading branch information
Showing
90 changed files
with
538 additions
and
283 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Magento Code of Conduct | ||
# Mage-OS Code of Conduct | ||
|
||
## Our Pledge | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Coding Standard With Baseline | ||
on: | ||
pull_request: | ||
branches: | ||
- 2.4-develop | ||
permissions: | ||
contents: read | ||
jobs: | ||
coding-standard: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run Coding Standard Baseline | ||
uses: mage-os/github-actions/coding-standard-baseline@main | ||
with: | ||
head_repo: ${{github.event.pull_request.head.repo.full_name}} | ||
head_ref: ${{github.event.pull_request.head.ref}} | ||
|
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,13 @@ | ||
name: Integration Tests - Full Test Suite | ||
run-name: ${{ github.actor }} is running Full Integration Test Suite | ||
on: | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
call-workflow: | ||
name: calling full integration test suite | ||
uses: mage-os/github-actions/.github/workflows/full-integration-tests.yaml@main | ||
secrets: inherit | ||
with: | ||
repository: ${{ github.repository }} | ||
head: ${{ github.sha }} |
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,16 @@ | ||
on: | ||
schedule: | ||
- cron: "10 10 * * *" # This gives mirror sync, which runs at 9:57, some time to complete. | ||
workflow_dispatch: {} | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
jobs: | ||
merge-from-mirror: | ||
uses: mage-os/infrastructure/.github/workflows/merge-upstream-changes.yml@main | ||
with: | ||
upstream: https://github.com/mage-os/mirror-magento2.git | ||
matrix: '{ branch: ["2.4-develop"] }' | ||
secrets: | ||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | ||
MAGEOS_GITHUB_TOKEN: ${{ secrets.MAGE_OS_CI_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Integration Tests (Using Nx) | ||
run-name: ${{ github.actor }} is running Integration Tests | ||
on: | ||
pull_request: | ||
branches: | ||
- 2.4-develop | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
call-workflow: | ||
name: Calling Nx integration tests | ||
uses: mage-os/github-actions/.github/workflows/nx-integration-tests.yml@main | ||
secrets: inherit | ||
with: | ||
repository: ${{ github.repository }} | ||
pr_head: ${{ github.event.pull_request.head.sha }} | ||
pr_base: ${{ github.event.pull_request.base.ref }} |
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,13 @@ | ||
name: Unit Tests | ||
run-name: ${{ github.actor }} is running Unit Tests | ||
on: | ||
pull_request: | ||
branches: | ||
- 2.4-develop | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
run-unit-tests: | ||
uses: mage-os/infrastructure/.github/workflows/unit-tests.yml@main |
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 @@ | ||
* @Mage-OS/distribution |
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
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
Oops, something went wrong.