Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-review-panel.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 26 additions & 1 deletion .github/workflows/shared/apm.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@
# owner: beta-org
# packages:
# - beta-org/beta-pkg
#
# 4. Slim bundle for a single harness (recommended when the workflow
# targets one engine -- avoids packing every harness layout):
#
# imports:
# - uses: shared/apm.md
# with:
# target: copilot
# packages:
# - microsoft/apm-sample-package

import-schema:
packages:
Expand Down Expand Up @@ -133,6 +143,21 @@ import-schema:
type: string
required: true

# APM compilation target (which agent harness layouts to deploy)
target:
type: string
required: false
default: all
description: >
Target harness(es) for APM compilation. Controls which agent config
directories are generated in the bundle. Single token or comma-separated
list. Valid tokens: copilot, claude, cursor, codex, opencode, gemini,
windsurf, agent-skills, all. Default: all (every supported harness).
Set this to match the engine your gh-aw workflow targets for smaller,
faster bundles. The shared workflow runs apm-action in isolated mode,
so any apm.yml in the consumer repo is intentionally ignored -- this
input is the sole target signal.
Comment on lines +154 to +159

jobs:
apm-prep:
runs-on: ubuntu-slim
Expand Down Expand Up @@ -262,7 +287,7 @@ jobs:
isolated: 'true'
pack: 'true'
archive: 'true'
target: all
target: ${{ github.aw.import-inputs.target || 'all' }}
working-directory: /tmp/gh-aw/apm-workspace
- name: Upload APM bundle artifact
if: success()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage-panel.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- `shared/apm.md` gh-aw shared workflow exposes a `target:` import input (default `all`) so consumer workflows can ship slim, single-harness bundles instead of always packing every layout. (#1184)

## [0.12.4] - 2026-05-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading