Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
77a30cb
initial commit
louisachu Oct 23, 2025
b157c9c
update on deployment script
louisachu Oct 23, 2025
07e3b5c
replacing escape characters
louisachu Oct 24, 2025
3d57834
remove gatsby files
louisachu Oct 24, 2025
e214fd8
add lint to deploy process
louisachu Nov 5, 2025
e2372b1
update deploy script to not include lint
louisachu Nov 6, 2025
1c999cc
update commerce home to top nav
louisachu Nov 6, 2025
a9f01cc
Update Spinner-lg.gif
louisachu Nov 13, 2025
175ea26
Remove deprecated files and update configurations for improved deploy…
dshevtsov Nov 12, 2025
e7b59a2
Add TOC tests
dshevtsov Nov 13, 2025
52fbe01
Update progress indicator documentation to use Markdown image syntax
dshevtsov Nov 13, 2025
aaf5485
Replace InlineAlert with Edition component and update PaaS reference …
dshevtsov Nov 13, 2025
5bb95e5
Delete duplicate links in TOC
dshevtsov Nov 13, 2025
6602161
Fix Markdown
dshevtsov Nov 14, 2025
fd1c7fc
Linting
dshevtsov Nov 14, 2025
606871d
Test PR validation fix
dshevtsov Nov 14, 2025
f8e7d3e
chore: empty commit
dshevtsov Nov 14, 2025
ec6ffd1
Fix HTML
dshevtsov Nov 14, 2025
0c4a0c8
Update markdownlint configuration to disable table column style check…
dshevtsov Nov 14, 2025
bb3ad1d
Fix formatting
dshevtsov Nov 14, 2025
f124b02
Update PR validation workflow to use the main branch of validate-pr.yml
dshevtsov Nov 14, 2025
e84fdca
Merge pull request #159 from commerce-docs/ds_migration
dshevtsov Nov 14, 2025
26fe020
Update configuration and add new design and content overview pages
dshevtsov Nov 17, 2025
448236a
Remove PR comment workflow configuration file
dshevtsov Nov 17, 2025
79d179c
Update deploy workflow to set deployAll input to true by default
dshevtsov Nov 17, 2025
b085f0a
Merge pull request #161 from commerce-docs/ds_fix-toc
dshevtsov Nov 17, 2025
da351ac
Update copyright current date
dshevtsov Nov 17, 2025
4ecd0d3
Merge branch 'eds-migration' of github.com:AdobeDocs/commerce-admin-d…
dshevtsov Nov 17, 2025
1084783
Merge branch 'main' into eds-migration
dshevtsov Nov 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .env.example

This file was deleted.

2 changes: 1 addition & 1 deletion .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ This Code of Conduct is adapted from the [Contributor Covenant][homepage], versi
available at [https://contributor-covenant.org/version/1/4][version].

[homepage]: https://contributor-covenant.org
[version]: https://contributor-covenant.org/version/1/4/
[version]: https://contributor-covenant.org/version/1/4/
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This pull request (PR) ...

- ...

## Links to Magento Open Source code
## Links to the public Commerce codebase

<!-- OPTIONAL - REMOVE THIS SECTION IF NOT USED. If this pull request references a file in a Magento Open Source or Adobe Commerce codebase repository, add it here. -->

Expand Down
21 changes: 8 additions & 13 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
# `dependabot.yml` file with
# assignee for all npm pull requests

version: 2
updates:
# Enable version updates for npm
# Keep npm dependencies up to date
- package-ecosystem: "npm"
# Look for `package.json` and `lock` files in the `root` directory
directory: "/"
# Check the npm registry for updates every day (weekdays)
schedule:
interval: "daily"
allow:
- dependency-name: "@adobe/gatsby-theme-aio"
versioning-strategy: increase
open-pull-requests-limit: 25
labels:
- "dependencies"
ignore:
# Ignore updates to package
- dependency-name: "gatsby"
interval: "weekly"
# Raise all npm pull requests with assignees
assignees:
- "dshevtsov"
51 changes: 0 additions & 51 deletions .github/linters/.markdownlint.yml

This file was deleted.

59 changes: 0 additions & 59 deletions .github/linters/.yaml-lint.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/linters/metadata.schema.yml

This file was deleted.

49 changes: 0 additions & 49 deletions .github/scripts/get-path-prefix.js

This file was deleted.

7 changes: 0 additions & 7 deletions .github/super-linter.env

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/add-to-project-board.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ on:

jobs:
call-workflow-add-to-project:
uses: AdobeDocs/commerce-php/.github/workflows/add-to-project_job.yml@main
uses: AdobeDocs/commerce-contributor/.github/workflows/add-to-project_job.yml@main
secrets: inherit
33 changes: 33 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Deployment
on:
push:
branches:
- main
workflow_dispatch:
inputs:
env:
description: "Select environment to deploy to"
type: choice
required: true
default: "prod"
options:
- "prod"
- "stage & prod"
baseSha:
description: "Use base SHA commit to deploy from (empty string defaults to last commit before HEAD)"
type: string
required: false
default: ""
deployAll:
description: "Force deploy all files"
type: boolean
default: false
jobs:
deployment:
name: Deployment
uses: AdobeDocs/adp-devsite-workflow/.github/workflows/deploy.yml@main
with:
env: ${{ inputs.env || 'prod' }}
baseSha: ${{ inputs.baseSha || '' }}
deployAll: ${{ inputs.deployAll || true }}
20 changes: 0 additions & 20 deletions .github/workflows/github-pages.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/index.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: PR validation
on:
pull_request:

jobs:
validate:
uses: AdobeDocs/commerce-contributor/.github/workflows/validate-pr.yml@main
with:
pr_number: ${{ github.event.pull_request.number }}
base_ref: ${{ github.event.pull_request.base.ref }}
Loading
Loading