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
33 changes: 32 additions & 1 deletion .github/workflows/smoke-claude.lock.yml

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

19 changes: 19 additions & 0 deletions .github/workflows/smoke-claude.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@ sandbox:
mcp:
version: v0.3.1
strict: false
jobs:
verify_token_usage:
needs: agent
if: always() && needs.agent.result != 'skipped' && needs.agent.result != 'cancelled'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Download agent artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: agent
path: /tmp/gh-aw-agent
- name: Token-usage sanity check
run: node scripts/ci/check-token-usage.js --artifact-root /tmp/gh-aw-agent --engine claude
tools:
bash:
- bash
Expand Down
33 changes: 32 additions & 1 deletion .github/workflows/smoke-codex.lock.yml

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

19 changes: 19 additions & 0 deletions .github/workflows/smoke-codex.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,25 @@ sandbox:
mcp:
version: latest
strict: false
jobs:
verify_token_usage:
needs: agent
if: always() && needs.agent.result != 'skipped' && needs.agent.result != 'cancelled'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Download agent artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: agent
path: /tmp/gh-aw-agent
- name: Token-usage sanity check
run: node scripts/ci/check-token-usage.js --artifact-root /tmp/gh-aw-agent --engine codex
imports:
- shared/gh.md
- shared/reporting.md
Expand Down
33 changes: 32 additions & 1 deletion .github/workflows/smoke-copilot.lock.yml

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

19 changes: 19 additions & 0 deletions .github/workflows/smoke-copilot.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,25 @@ sandbox:
mcp:
version: v0.3.1
strict: false
jobs:
verify_token_usage:
needs: agent
if: always() && needs.agent.result != 'skipped' && needs.agent.result != 'cancelled'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Download agent artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: agent
path: /tmp/gh-aw-agent
- name: Token-usage sanity check
run: node scripts/ci/check-token-usage.js --artifact-root /tmp/gh-aw-agent --engine copilot
steps:
- name: Pre-compute smoke test data
id: smoke-data
Expand Down
Loading
Loading