From 00168b01e30ff51ad28dfc1641f565c23b856b8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 20:51:03 +0000 Subject: [PATCH] [caveman] Trim duplicated network examples in network.md The "Common Patterns" section restated four YAML blocks already shown verbatim in "Quick Reference". Kept the two unique combinations and pointed at Quick Reference for the rest. Co-Authored-By: Claude --- .github/aw/network.md | 30 +++--------------------------- 1 file changed, 3 insertions(+), 27 deletions(-) diff --git a/.github/aw/network.md b/.github/aw/network.md index 73e5fcb6608..3c94dae5e15 100644 --- a/.github/aw/network.md +++ b/.github/aw/network.md @@ -162,7 +162,7 @@ For workflows that build, test, or install packages, add the matching ecosystem ## Common Patterns -### Workflow that reads GitHub data only +Reads GitHub data only: ```yaml network: @@ -171,16 +171,7 @@ network: - github ``` -### Node.js CI workflow - -```yaml -network: - allowed: - - defaults - - node -``` - -### Multi-language project +Multi-language project: ```yaml network: @@ -190,19 +181,4 @@ network: - python ``` -### Calling an external API - -```yaml -network: - allowed: - - defaults - - api.myservice.com - - "*.myservice.com" -``` - -### No outbound network access - -```yaml -network: - allowed: [] -``` +Single ecosystem, external APIs, and no-network forms are in [Quick Reference](#quick-reference).