Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e8640d7
add EDS template files and update package.json
louisachu Apr 29, 2026
0e15548
add config.md navigation structure
louisachu Apr 30, 2026
7455bfa
refine top nav: Documentation link, Get credentials; sync gatsby-config
louisachu Apr 30, 2026
29dd668
build redirections, normalize links, rename files
louisachu Apr 30, 2026
208498e
move OpenAPI specs and Postman zips to static/resources
louisachu Apr 30, 2026
4eaaa67
update files from lint errors
louisachu May 1, 2026
cb4dd0c
update to stage temp
louisachu May 1, 2026
ecf4d46
update
louisachu May 1, 2026
44523d2
update
louisachu May 1, 2026
a3f8a0d
update files back to resources directory
louisachu May 1, 2026
d1f97d3
test updates
louisachu May 1, 2026
5d3989c
update
louisachu May 1, 2026
87b68e2
update json file paths
louisachu May 4, 2026
333f8ba
update redocly url
louisachu May 7, 2026
e2d9def
test url
louisachu May 19, 2026
c7fd68f
update links
louisachu May 19, 2026
bf30392
moving the zip files back to resources
louisachu May 19, 2026
9b1099c
update links
louisachu May 19, 2026
87dcafb
update branch
louisachu May 19, 2026
5271dd6
cleanup Gatsby files, revert deploy.yml, and update README
louisachu May 26, 2026
227a5d2
test the branch again
louisachu May 26, 2026
3cf5384
chore: auto-generate contributors
github-actions[bot] May 26, 2026
526f1b9
remove symbolic links
louisachu May 26, 2026
8ff3c03
chore: auto-generate contributors
github-actions[bot] May 26, 2026
59c6b6a
update deploy.yml to prod
louisachu May 26, 2026
ad6fe8e
Merge branch 'eds-migration' of https://github.com/AdobeDocs/pdfservi…
louisachu May 26, 2026
91e8684
Generate contributors
github-actions[bot] May 26, 2026
29034ff
update workflows
louisachu May 26, 2026
bdffa28
Merge branch 'eds-migration' of https://github.com/AdobeDocs/pdfservi…
louisachu May 26, 2026
9d57674
update all the workflows
louisachu May 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
18 changes: 0 additions & 18 deletions .github/dependabot.yml

This file was deleted.

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.

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

This file was deleted.

11 changes: 11 additions & 0 deletions .github/workflows/build-auto-generated-files.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Build Auto-Generated Files
on:
workflow_dispatch:

jobs:
build-contributors:
name: Build Auto-Generated Files
uses: AdobeDocs/adp-devsite-workflow/.github/workflows/build-auto-generated-files-v2.yml@main
secrets: inherit

46 changes: 22 additions & 24 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,35 @@
---
name: Deployment
name: Production Deployment
on:
push:
branches:
- main
workflow_dispatch:
inputs:
env:
description: "Deploy to (dev|prod|dev prod)"
required: true
default: "dev"
clean:
description: "Clean cache"
description: "Select environment to deploy to"
type: choice
required: true
type: boolean
default: false
excludeSubfolder:
description: "Exclude a subfolder from deletion"
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: ""
index-mode:
description: 'Type of indexing. "index" to push to Algolia, "console" for dry run.'
required: true
default: "index"
type: choice
options:
- console
- index
deployAll:
description: "Force deploy all files"
type: boolean
default: false
jobs:
deployment:
name: Deployment
uses: AdobeDocs/adp-devsite-workflow/.github/workflows/gatsby-deploy.yml@main
if: github.actor != 'adp-devsite-app[bot]' && github.repository != 'AdobeDocs/dev-docs-template'
uses: AdobeDocs/adp-devsite-workflow/.github/workflows/deploy-v2.yml@main
secrets: inherit
with:
env: ${{ inputs.env }}
clean: ${{ inputs.clean }}
excludeSubfolder: ${{ inputs.excludeSubfolder }}
index-mode: ${{ inputs.index-mode }}
NODE_OPTIONS: "--max-old-space-size=8192"
env: ${{ inputs.env || 'prod' }}
baseSha: ${{ inputs.baseSha || '' }}
deployAll: ${{ inputs.deployAll || false }}
41 changes: 0 additions & 41 deletions .github/workflows/github-pages.yml

This file was deleted.

49 changes: 49 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Lint
on:
pull_request:
branches: [main]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Check for src/pages changes
id: changes
env:
BASE_REF: ${{ github.base_ref }}
run: |
git diff --name-only "origin/${BASE_REF}...HEAD" | grep -q '^src/pages/' \
&& echo "changed=true" >> $GITHUB_OUTPUT \
|| echo "changed=false" >> $GITHUB_OUTPUT

- name: Lint
id: lint
if: steps.changes.outputs.changed == 'true'
continue-on-error: true
run: npx --yes github:AdobeDocs/adp-devsite-utils runLint -v

- name: Save PR number
if: always()
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
run: echo "$PR_NUMBER" > pr-number.txt

- name: Upload linter report
if: always()
uses: actions/upload-artifact@v7
with:
name: linter-report
path: |
linter-report.txt
pr-number.txt
if-no-files-found: ignore

- name: Fail if linter found errors
if: steps.changes.outputs.changed == 'true' && steps.lint.outcome == 'failure'
run: exit 1
32 changes: 32 additions & 0 deletions .github/workflows/post-lint-comment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
name: Post Linter Report
on:
workflow_run:
workflows: ["Lint"]
types:
- completed

permissions:
pull-requests: write

jobs:
comment:
runs-on: ubuntu-latest
if: github.event.workflow_run.event == 'pull_request'
steps:
- name: Download linter report artifact
uses: actions/download-artifact@v8
with:
name: linter-report
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Post Linter Report to PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }}
LINTER_REPORT_PATH: ./linter-report.txt
PR_NUMBER_PATH: ./pr-number.txt
run: |
npm install --no-save github:AdobeDocs/adp-devsite-scripts
node node_modules/adp-devsite-scripts/linter-bot/postLinterReport.js
Loading