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
5 changes: 5 additions & 0 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
"repo": "github/gh-aw/actions/setup",
"version": "v0.47.4",
"sha": "da463a765059a5eed4cc345a003ecfc71c45ec49"
},
"github/gh-aw/actions/setup@v0.48.1": {
"repo": "github/gh-aw/actions/setup",
"version": "v0.48.1",
"sha": "26b6572ae210580303087bc3142fe58d140bf65c"
}
}
}
2 changes: 1 addition & 1 deletion .github/workflows/agentics-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
pull-requests: write
steps:
- name: Setup Scripts
uses: ./actions/setup
uses: github/gh-aw/actions/setup@v0.48.1
Comment thread
strawgate marked this conversation as resolved.
with:
destination: /opt/gh-aw/actions

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
inlined-imports: true
name: "Downstream Users"
description: "Track downstream public repo usage of elastic/ai-github-actions and update data"
imports:
Expand All @@ -14,34 +15,12 @@ engine:
id: copilot
model: gpt-5.3-codex
on:
workflow_call:
inputs:
additional-instructions:
description: "Repo-specific instructions appended to the agent prompt"
type: string
required: false
default: ""
setup-commands:
description: "Shell commands to run before the agent starts (dependency install, build, etc.)"
type: string
required: false
default: ""
allowed-bot-users:
description: "Allowlisted bot actor usernames (comma-separated)"
type: string
required: false
default: "github-actions[bot]"
messages-footer:
description: "Footer appended to all agent comments and reviews"
type: string
required: false
default: ""
secrets:
COPILOT_GITHUB_TOKEN:
required: true
schedule:
- cron: "weekly on Monday around 10:00"
workflow_dispatch:
Comment thread
strawgate marked this conversation as resolved.
roles: [admin, maintainer, write]
bots:
- "${{ inputs.allowed-bot-users }}"
- "github-actions[bot]"
concurrency:
group: downstream-users
cancel-in-progress: true
Expand All @@ -66,12 +45,6 @@ strict: false
safe-outputs:
noop:
timeout-minutes: 90
steps:
- name: Repo-specific setup
if: ${{ inputs.setup-commands != '' }}
env:
SETUP_COMMANDS: ${{ inputs.setup-commands }}
run: eval "$SETUP_COMMANDS"
---

# Downstream Users Tracking
Expand Down Expand Up @@ -147,4 +120,3 @@ Guidelines:
- The search query used
- Any exclusions (self repo, archived/forks if excluded)

${{ inputs.additional-instructions }}
83 changes: 67 additions & 16 deletions .github/workflows/gh-aw-agent-efficiency.lock.yml

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

10 changes: 8 additions & 2 deletions .github/workflows/gh-aw-agent-efficiency.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
inlined-imports: true
name: "Agent Efficiency"
description: "Analyze agent workflow logs for inefficiencies, errors, and prompt improvement opportunities"
imports:
Expand All @@ -9,13 +10,18 @@ imports:
- gh-aw-fragments/mcp-pagination.md
- gh-aw-fragments/messages-footer.md
- gh-aw-fragments/safe-output-create-issue.md
- gh-aw-fragments/scheduled-report.md
- gh-aw-fragments/scheduled-audit.md
engine:
id: copilot
model: gpt-5.3-codex
model: ${{ inputs.model }}
on:
workflow_call:
inputs:
model:
description: "AI model to use"
type: string
required: false
default: "gpt-5.3-codex"
additional-instructions:
description: "Repo-specific instructions appended to the agent prompt"
type: string
Expand Down
Loading
Loading