-
Notifications
You must be signed in to change notification settings - Fork 1
[docs] Update README with GitHub Agentic Workflows documentation for 2026-03-12 #104
Description
Documentation Updates - 2026-03-12
This PR updates README.md based on features merged in the last 24 hours.
Features Documented
- GitHub Agentic Workflows (from chore: add agentic workflows #102) — six automated CI/CD workflows for documentation, repo status, QA, glossary maintenance, and ChatOps slash commands
Changes Made
- Updated
README.mdto add a new GitHub Agentic Workflows section before the existing Ralph Wiggum Loop section, including:- A summary table of all six workflows with trigger type and description
- Slash command usage examples (
/qand/pr-fix) - A note about the
.md→.lock.ymlcompilation workflow and the.gitattributesconfiguration
Merged PRs Referenced
- chore: add agentic workflows #102 —
chore: add agentic workflows— addeddaily-doc-updater,daily-repo-status,daily-qa,glossary-maintainer,q, andpr-fixworkflows - chore: replace secrets.ANTHROPIC_API_KEY with secrets.CLAUDE_CODE_OAUTH_TOKEN #101 —
chore: replace secrets.ANTHROPIC_API_KEY with secrets.CLAUDE_CODE_OAUTH_TOKEN— internal workflow secret migration (no user-facing documentation needed)
Notes
PR #101's change is internal infrastructure (migrating Claude Code GitHub Actions to OAuth token auth) and doesn't require user-facing documentation changes.
Generated by Daily Documentation Updater · ◷
To install this agentic workflow, run
gh aw add githubnext/agentics/workflows/daily-doc-updater.md@346204513ecfa08b81566450d7d599556807389f
Warning
⚠️ Firewall blocked 2 domains
The following domains were blocked by the firewall during workflow execution:
169.254.169.254metadata.google.internal
To allow these domains, add them to the network.allowed list in your workflow frontmatter:
network:
allowed:
- defaults
- "169.254.169.254"
- "metadata.google.internal"See Network Configuration for more information.
- expires on Mar 14, 2026, 9:09 AM UTC
Note
This was originally intended as a pull request, but the git push operation failed.
Workflow Run: View run details and download patch artifact
The patch file is available in the agent-artifacts artifact in the workflow run linked above.
To create a pull request with the changes:
# Download the artifact from the workflow run
gh run download 22994283368 -n agent-artifacts -D /tmp/agent-artifacts-22994283368
# Create a new branch
git checkout -b docs/agentic-workflows-2026-03-12-02c572180d68ec5f
# Apply the patch (--3way handles cross-repo patches where files may already exist)
git am --3way /tmp/agent-artifacts-22994283368/aw-docs-agentic-workflows-2026-03-12.patch
# Push the branch to origin
git push origin docs/agentic-workflows-2026-03-12-02c572180d68ec5f
# Create the pull request
gh pr create --title '[docs] Update README with GitHub Agentic Workflows documentation for 2026-03-12' --base main --head docs/agentic-workflows-2026-03-12-02c572180d68ec5f --repo fuww/developerShow patch preview (73 of 73 lines)
From 58931dabb3584b45218142b8f56762473d74e95d Mon Sep 17 00:00:00 2001
From: "github-actions[bot]" <github-actions[bot]@users.noreply.github.com>
Date: Thu, 12 Mar 2026 09:07:46 +0000
Subject: [PATCH] docs: document GitHub Agentic Workflows from PR #102
Add a dedicated section to README.md covering the six agentic
workflows introduced in #102:
- daily-doc-updater
- daily-repo-status
- daily-qa
- glossary-maintainer
- q (slash command)
- pr-fix (slash command)
Includes a workflow summary table, slash command usage examples,
and a note on the .lock.yml compilation workflow.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---
README.md | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/README.md b/README.md
index 08608b5..234b110 100644
--- a/README.md
+++ b/README.md
@@ -44,6 +44,41 @@ docker build -t europe-west1-docker.pkg.dev/developers-fashionunited-com/develop
## License
[](https://app.fossa.com/projects/git%2Bgithub.com%2Ffuww%2Fdeveloper.fashionunited.com?ref=badge_large)
+## GitHub Agentic Workflows
+
+This repository uses [GitHub Agentic Workflows (`gh-aw`)](https://github.com/githubnext/agentics) to automate routine maintenance and quality tasks. These workflows run on a schedule or can be triggered manually.
+
+### Available Workflows
+
+| Workflow | Trigger | Description |
+|---|---|---|
+| **daily-doc-updater** | Daily schedule | Reviews merged PRs and automatically updates documentation to reflect recent code changes. Creates a draft PR with proposed changes. |
+| **daily-repo-status** | Daily schedule | Generates a daily activity summary as a GitHub issue, covering recent PRs, issues, releases, and progress highlights. |
+| **daily-qa** | Daily schedule | Validates project health: checks that code builds, tests pass, documentation is clear, and code is well-structured.
... (truncated)