From 5384397e226a1862057ee7a4bfa04f08d686b103 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 6 Jan 2026 19:17:00 +0000 Subject: [PATCH] Upgrade workflows to gh-aw v0.35.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit upgrades all agentic workflows to be compatible with gh-aw v0.35.1. Changes made: - Ran `gh aw fix --write` - no automatic fixes were needed - Recompiled all 17 workflows successfully with `gh aw compile --validate` - Added missing GitHub permissions to two workflows: - workflows/daily-backlog-burner.md: Added actions, contents, discussions, issues, pull-requests, and security-events read permissions - workflows/daily-progress.md: Added actions, contents, discussions, issues, pull-requests, and security-events read permissions These permissions are required when using `github.toolsets: [all]` in workflows. All workflows now compile successfully with only informational warnings: - web-search tool is not supported by Copilot engine (expected) - projects toolset requires additional token permissions (informational) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- workflows/daily-backlog-burner.md | 8 ++++++++ workflows/daily-progress.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/workflows/daily-backlog-burner.md b/workflows/daily-backlog-burner.md index de7ec67..9b15e9b 100644 --- a/workflows/daily-backlog-burner.md +++ b/workflows/daily-backlog-burner.md @@ -14,6 +14,14 @@ timeout-minutes: 30 network: defaults +permissions: + actions: read + contents: read + discussions: read + issues: read + pull-requests: read + security-events: read + safe-outputs: create-discussion: title-prefix: "${{ github.workflow }}" diff --git a/workflows/daily-progress.md b/workflows/daily-progress.md index 6eb8dc9..d24f9e4 100644 --- a/workflows/daily-progress.md +++ b/workflows/daily-progress.md @@ -14,6 +14,14 @@ timeout-minutes: 30 network: defaults +permissions: + actions: read + contents: read + discussions: read + issues: read + pull-requests: read + security-events: read + safe-outputs: create-discussion: title-prefix: "${{ github.workflow }}"