Skip to content

Commit b134d57

Browse files
authored
Use deterministic Docs Agent completion (#443)
1 parent cee87bf commit b134d57

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v6.0.3
5454
with:
5555
repository: Automattic/docs-agent
56-
ref: f887e392ad93db11efb997ed3669171e67018403
56+
ref: 7b67d341eea16b75b8e055507d36a8d8e69a1fe3
5757
path: .docs-agent-producer
5858

5959
- name: Checkout WP Codebox producer schema

.github/workflows/docs-agent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ concurrency:
2020
jobs:
2121
docs-agent:
2222
name: Maintain Technical Documentation
23-
uses: Automattic/docs-agent/.github/workflows/maintain-docs.yml@f887e392ad93db11efb997ed3669171e67018403
23+
uses: Automattic/docs-agent/.github/workflows/maintain-docs.yml@7b67d341eea16b75b8e055507d36a8d8e69a1fe3
2424
with:
2525
audience: technical
2626
run_kind: maintenance

docs/docs-agent-workflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Agents API publishes its canonical documentation updates through the repository-
77
The consumer workflow is named **Docs Agent** and dispatches the reusable Docs Agent workflow from Automattic/docs-agent at the exact pinned revision:
88

99
```text
10-
Automattic/docs-agent/.github/workflows/maintain-docs.yml@f887e392ad93db11efb997ed3669171e67018403
10+
Automattic/docs-agent/.github/workflows/maintain-docs.yml@7b67d341eea16b75b8e055507d36a8d8e69a1fe3
1111
```
1212

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

3434
The required producer checkouts are:
3535

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

3939
At that Docs Agent revision, the `technical:maintenance` lane maps to the native package:

tests/docs-agent-native-workflow-contract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
declare( strict_types=1 );
1414

15-
const AGENTS_API_DOCS_AGENT_REVISION = 'f887e392ad93db11efb997ed3669171e67018403';
15+
const AGENTS_API_DOCS_AGENT_REVISION = '7b67d341eea16b75b8e055507d36a8d8e69a1fe3';
1616
const AGENTS_API_WP_CODEBOX_RELEASE_REF = 'v0.12.29';
1717
const AGENTS_API_WP_CODEBOX_PRODUCER_REVISION = 'a6fe2d208e990a8d04104aa74aacbb8d1539fbc1';
1818

0 commit comments

Comments
 (0)