Skip to content

Commit 48446c5

Browse files
Copilotlpcox
andcommitted
Upgrade agentic workflows to v0.46.1
- Updated dispatcher agent and prompt files to v0.46.1 - Applied codemods: transformed activation outputs to sanitized step in plan.md - Fixed network configurations for strict mode compliance: - gpl-dependency-checker: Changed specific Go domains to 'go' ecosystem - large-payload-tester: Removed explicit docker.io, using 'containers' ecosystem - nightly-mcp-stress-test: Removed explicit docker.io, using 'containers' ecosystem - smoke-codex: Set strict: false to allow custom network domains - smoke-copilot: Set strict: false to allow custom network domains - Recompiled all workflows with updated GitHub Actions versions - All 19 workflows now compile successfully Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com>
1 parent 5e52c62 commit 48446c5

27 files changed

Lines changed: 4327 additions & 3821 deletions

.github/agents/agentic-workflows.agent.md

Lines changed: 9 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: GitHub Agentic Workflows (gh-aw) - Create, debug, and upgrade AI-powered workflows with intelligent prompt routing
3-
infer: false
3+
disable-model-invocation: true
44
---
55

66
# GitHub Agentic Workflows Agent
@@ -27,7 +27,7 @@ Workflows may optionally include:
2727
- Workflow files: `.github/workflows/*.md` and `.github/workflows/**/*.md`
2828
- Workflow lock files: `.github/workflows/*.lock.yml`
2929
- Shared components: `.github/workflows/shared/*.md`
30-
- Configuration: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/github-agentic-workflows.md
30+
- Configuration: https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/github-agentic-workflows.md
3131

3232
## Problems This Solves
3333

@@ -49,7 +49,7 @@ When you interact with this agent, it will:
4949
### Create New Workflow
5050
**Load when**: User wants to create a new workflow from scratch, add automation, or design a workflow that doesn't exist yet
5151

52-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/create-agentic-workflow.md
52+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/create-agentic-workflow.md
5353

5454
**Use cases**:
5555
- "Create a workflow that triages issues"
@@ -59,7 +59,7 @@ When you interact with this agent, it will:
5959
### Update Existing Workflow
6060
**Load when**: User wants to modify, improve, or refactor an existing workflow
6161

62-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/update-agentic-workflow.md
62+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/update-agentic-workflow.md
6363

6464
**Use cases**:
6565
- "Add web-fetch tool to the issue-classifier workflow"
@@ -69,7 +69,7 @@ When you interact with this agent, it will:
6969
### Debug Workflow
7070
**Load when**: User needs to investigate, audit, debug, or understand a workflow, troubleshoot issues, analyze logs, or fix errors
7171

72-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/debug-agentic-workflow.md
72+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/debug-agentic-workflow.md
7373

7474
**Use cases**:
7575
- "Why is this workflow failing?"
@@ -79,7 +79,7 @@ When you interact with this agent, it will:
7979
### Upgrade Agentic Workflows
8080
**Load when**: User wants to upgrade workflows to a new gh-aw version or fix deprecations
8181

82-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/upgrade-agentic-workflows.md
82+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/upgrade-agentic-workflows.md
8383

8484
**Use cases**:
8585
- "Upgrade all workflows to the latest version"
@@ -89,37 +89,13 @@ When you interact with this agent, it will:
8989
### Create Shared Agentic Workflow
9090
**Load when**: User wants to create a reusable workflow component or wrap an MCP server
9191

92-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/create-shared-agentic-workflow.md
92+
**Prompt file**: https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/create-shared-agentic-workflow.md
9393

9494
**Use cases**:
9595
- "Create a shared component for Notion integration"
9696
- "Wrap the Slack MCP server as a reusable component"
9797
- "Design a shared workflow for database queries"
9898

99-
### Orchestration and Delegation
100-
101-
**Load when**: Creating or updating workflows that coordinate multiple agents or dispatch work to other workflows
102-
103-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/orchestration.md
104-
105-
**Use cases**:
106-
- Assigning work to AI coding agents
107-
- Dispatching specialized worker workflows
108-
- Using correlation IDs for tracking
109-
- Orchestration design patterns
110-
111-
### GitHub Projects Integration
112-
113-
**Load when**: Creating or updating workflows that manage GitHub Projects v2
114-
115-
**Prompt file**: https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/projects.md
116-
117-
**Use cases**:
118-
- Tracking items and fields with update-project
119-
- Posting periodic run summaries
120-
- Creating new projects
121-
- Projects v2 authentication and configuration
122-
12399
## Instructions
124100

125101
When a user interacts with you:
@@ -135,7 +111,7 @@ When a user interacts with you:
135111
# Initialize repository for agentic workflows
136112
gh aw init
137113

138-
# Compile workflows
114+
# Generate the lock file for a workflow
139115
gh aw compile [workflow-name]
140116

141117
# Debug workflow runs
@@ -160,7 +136,7 @@ gh aw compile --validate
160136

161137
## Important Notes
162138

163-
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.42.13/.github/aw/github-agentic-workflows.md for complete documentation
139+
- Always reference the instructions file at https://github.com/github/gh-aw/blob/v0.46.1/.github/aw/github-agentic-workflows.md for complete documentation
164140
- Use the MCP tool `agentic-workflows` when running in GitHub Copilot Cloud
165141
- Workflows must be compiled to `.lock.yml` files before running in GitHub Actions
166142
- **Bash tools are enabled by default** - Don't restrict bash commands unnecessarily since workflows are sandboxed by the AWF

.github/workflows/agentics-maintenance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# \ /\ / (_) | | | | ( | | | | (_) \ V V /\__ \
1414
# \/ \/ \___/|_| |_|\_\|_| |_|\___/ \_/\_/ |___/
1515
#
16-
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.45.0). DO NOT EDIT.
16+
# This file was automatically generated by pkg/workflow/maintenance_workflow.go (v0.46.1). DO NOT EDIT.
1717
#
1818
# To regenerate this workflow, run:
1919
# gh aw compile
@@ -35,7 +35,7 @@ name: Agentic Maintenance
3535

3636
on:
3737
schedule:
38-
- cron: "37 */12 * * *" # Every 12 hours (based on minimum expires: 3 days)
38+
- cron: "37 */2 * * *" # Every 2 hours (based on minimum expires: 1 days)
3939
workflow_dispatch:
4040

4141
permissions: {}
@@ -49,7 +49,7 @@ jobs:
4949
pull-requests: write
5050
steps:
5151
- name: Setup Scripts
52-
uses: github/gh-aw/actions/setup@v0.45.0
52+
uses: github/gh-aw/actions/setup@v0.46.1
5353
with:
5454
destination: /opt/gh-aw/actions
5555

0 commit comments

Comments
 (0)