Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v6.0.3
with:
repository: Automattic/docs-agent
ref: f887e392ad93db11efb997ed3669171e67018403
ref: 7b67d341eea16b75b8e055507d36a8d8e69a1fe3
path: .docs-agent-producer

- name: Checkout WP Codebox producer schema
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:
jobs:
docs-agent:
name: Maintain Technical Documentation
uses: Automattic/docs-agent/.github/workflows/maintain-docs.yml@f887e392ad93db11efb997ed3669171e67018403
uses: Automattic/docs-agent/.github/workflows/maintain-docs.yml@7b67d341eea16b75b8e055507d36a8d8e69a1fe3
with:
audience: technical
run_kind: maintenance
Expand Down
4 changes: 2 additions & 2 deletions docs/docs-agent-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Agents API publishes its canonical documentation updates through the repository-
The consumer workflow is named **Docs Agent** and dispatches the reusable Docs Agent workflow from Automattic/docs-agent at the exact pinned revision:

```text
Automattic/docs-agent/.github/workflows/maintain-docs.yml@f887e392ad93db11efb997ed3669171e67018403
Automattic/docs-agent/.github/workflows/maintain-docs.yml@7b67d341eea16b75b8e055507d36a8d8e69a1fe3
```

The workflow contract is intentionally narrow:
Expand All @@ -33,7 +33,7 @@ DOCS_AGENT_DIR=/path/to/docs-agent WP_CODEBOX_DIR=/path/to/wp-codebox php tests/

The required producer checkouts are:

- Docs Agent revision `f887e392ad93db11efb997ed3669171e67018403`.
- Docs Agent revision `7b67d341eea16b75b8e055507d36a8d8e69a1fe3`.
- WP Codebox reusable-workflow and helper revision `a6fe2d208e990a8d04104aa74aacbb8d1539fbc1`; packaged runtime release `v0.12.29` resolves to `bc982947ec33c78160125026e16d357b7ece3ea1`.

At that Docs Agent revision, the `technical:maintenance` lane maps to the native package:
Expand Down
2 changes: 1 addition & 1 deletion tests/docs-agent-native-workflow-contract.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

declare( strict_types=1 );

const AGENTS_API_DOCS_AGENT_REVISION = 'f887e392ad93db11efb997ed3669171e67018403';
const AGENTS_API_DOCS_AGENT_REVISION = '7b67d341eea16b75b8e055507d36a8d8e69a1fe3';
const AGENTS_API_WP_CODEBOX_RELEASE_REF = 'v0.12.29';
const AGENTS_API_WP_CODEBOX_PRODUCER_REVISION = 'a6fe2d208e990a8d04104aa74aacbb8d1539fbc1';

Expand Down