Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
8 changes: 5 additions & 3 deletions actions/assembler-match/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ outputs:

runs:
using: 'docker'
image: "docker://ghcr.io/elastic/docs-assembler:edge"
env:
INPUT_COMMAND: "content-source match"
image: "docker://ghcr.io/elastic/docs-builder:edge"
args:
- "assembler"
- "content-source"
- "validate"
11 changes: 5 additions & 6 deletions actions/validate-inbound-local/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: 'Validate Inbound Links'
description: 'Validates all published cross links from all known repositories against local links.json'

runs:
using: "composite"
steps:
- name: Validate Inbound Links
uses: elastic/docs-builder/actions/assembler@main
with:
command: "inbound-links validate-link-reference"
using: 'docker'
image: "docker://ghcr.io/elastic/docs-builder:edge"
args:
- "inbound-links"
- "validate-link-reference"
12 changes: 6 additions & 6 deletions actions/validate-path-prefixes-local/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: 'Validate Global Path Prefixes'
description: 'Validates local path prefixes in local links.json against claimed prefixes in assemblers navigation.yml '

runs:
using: "composite"
steps:
- name: Validate Inbound Links
uses: elastic/docs-builder/actions/assembler@main
with:
command: "navigation validate-link-reference"
using: 'docker'
image: "docker://ghcr.io/elastic/docs-builder:edge"
args:
- "assembler"
- "navigation"
- "validate-link-reference"
Loading