Skip to content

Commit 61a7633

Browse files
committed
updated to v0.28.7
1 parent 6ce95b9 commit 61a7633

20 files changed

Lines changed: 563 additions & 223 deletions

.github/instructions/github-agentic-workflows.instructions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
types: [opened]
1717
permissions:
1818
issues: write
19-
timeout_minutes: 10
19+
timeout-minutes: 10
2020
safe-outputs:
2121
create-issue: # for bugs, features
2222
create-discussion: # for status, audits, reports, logs
@@ -49,7 +49,7 @@ The YAML frontmatter supports these fields:
4949
- Available permissions: `contents`, `issues`, `pull-requests`, `discussions`, `actions`, `checks`, `statuses`, `models`, `deployments`, `security-events`
5050

5151
- **`runs-on:`** - Runner type (string, array, or object)
52-
- **`timeout_minutes:`** - Workflow timeout (integer, has sensible default and can typically be omitted)
52+
- **`timeout-minutes:`** - Workflow timeout (integer, has sensible default and can typically be omitted)
5353
- **`concurrency:`** - Concurrency control (string or object)
5454
- **`env:`** - Environment variables (object or string)
5555
- **`if:`** - Conditional execution expression (string)
@@ -843,7 +843,7 @@ permissions:
843843
tools:
844844
github:
845845
allowed: [get_issue, add_issue_comment, update_issue]
846-
timeout_minutes: 5
846+
timeout-minutes: 5
847847
---
848848
849849
# Issue Triage
@@ -872,7 +872,7 @@ safe-outputs:
872872
create-issue:
873873
title-prefix: "[research] "
874874
labels: [weekly, research]
875-
timeout_minutes: 15
875+
timeout-minutes: 15
876876
---
877877
878878
# Weekly Research
@@ -897,7 +897,7 @@ safe-outputs:
897897
898898
# Helper Bot
899899
900-
Respond to /helper-bot mentions with helpful information realted to ${{ github.repository }}. THe request is "${{ needs.activation.outputs.text }}".
900+
Respond to /helper-bot mentions with helpful information realted to ${{ github.repository }}. The request is "${{ needs.activation.outputs.text }}".
901901
```
902902

903903
### Workflow Improvement Bot
@@ -918,7 +918,7 @@ safe-outputs:
918918
create-issue:
919919
title-prefix: "[workflow-analysis] "
920920
labels: [automation, ci-improvement]
921-
timeout_minutes: 10
921+
timeout-minutes: 10
922922
---
923923
924924
# Workflow Improvement Analyzer
@@ -1147,7 +1147,7 @@ Agentic workflows compile to GitHub Actions YAML:
11471147
The workflow frontmatter is validated against JSON Schema during compilation. Common validation errors:
11481148

11491149
- **Invalid field names** - Only fields in the schema are allowed
1150-
- **Wrong field types** - e.g., `timeout_minutes` must be integer
1150+
- **Wrong field types** - e.g., `timeout-minutes` must be integer
11511151
- **Invalid enum values** - e.g., `engine` must be "copilot", "claude", "codex" or "custom"
11521152
- **Missing required fields** - Some triggers require specific configuration
11531153

@@ -1193,4 +1193,4 @@ gh aw logs <workflow-id>
11931193

11941194
### Documentation
11951195

1196-
For complete CLI documentation, see: https://githubnext.github.io/gh-aw/tools/cli/
1196+
For complete CLI documentation, see: https://githubnext.github.io/gh-aw/setup/cli/

0 commit comments

Comments
 (0)