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: 305928a4ab2bddea759cf3d88077215ed687f75f
ref: f887e392ad93db11efb997ed3669171e67018403
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@305928a4ab2bddea759cf3d88077215ed687f75f
uses: Automattic/docs-agent/.github/workflows/maintain-docs.yml@f887e392ad93db11efb997ed3669171e67018403
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@305928a4ab2bddea759cf3d88077215ed687f75f
Automattic/docs-agent/.github/workflows/maintain-docs.yml@f887e392ad93db11efb997ed3669171e67018403
```

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 `305928a4ab2bddea759cf3d88077215ed687f75f`.
- Docs Agent revision `f887e392ad93db11efb997ed3669171e67018403`.
- 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 = '305928a4ab2bddea759cf3d88077215ed687f75f';
const AGENTS_API_DOCS_AGENT_REVISION = 'f887e392ad93db11efb997ed3669171e67018403';
const AGENTS_API_WP_CODEBOX_RELEASE_REF = 'v0.12.29';
const AGENTS_API_WP_CODEBOX_PRODUCER_REVISION = 'a6fe2d208e990a8d04104aa74aacbb8d1539fbc1';

Expand Down