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
7 changes: 6 additions & 1 deletion .github/workflows/ai-gateway-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ on:
- llmgateway
- pydantic-ai-gateway
- anthropic-direct
dry_run:
description: 'Run without ingesting or committing results'
required: false
default: false
type: boolean

concurrency:
group: ai-gateway-benchmarks
Expand Down Expand Up @@ -175,7 +180,7 @@ jobs:
});
}
- name: Commit and push
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && github.event.inputs.dry_run != 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/browser-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
description: 'Iterations per provider'
required: false
default: '100'
dry_run:
description: 'Run without ingesting or committing results'
required: false
default: false
type: boolean

concurrency:
group: browser-benchmarks
Expand Down Expand Up @@ -117,7 +122,7 @@ jobs:
- name: Merge results
run: npx tsx benchmarks/src/merge-results.ts --input artifacts --mode browser
- name: Ingest results to platform
if: github.event_name != 'push'
if: github.event_name != 'push' && github.event.inputs.dry_run != 'true'
continue-on-error: true
env:
INGEST_URL: ${{ secrets.INGEST_URL }}
Expand Down Expand Up @@ -226,7 +231,7 @@ jobs:
});
}
- name: Commit and push
if: github.event_name != 'push'
if: github.event_name != 'push' && github.event.inputs.dry_run != 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/browser-throughput-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ on:
description: 'Iterations per provider (sessions)'
required: false
default: '100'
dry_run:
description: 'Run without ingesting or committing results'
required: false
default: false
type: boolean

concurrency:
group: browser-throughput-benchmarks
Expand Down Expand Up @@ -270,7 +275,7 @@ jobs:
});
}
- name: Commit and push
if: github.event_name != 'push'
if: github.event_name != 'push' && github.event.inputs.dry_run != 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
243 changes: 0 additions & 243 deletions .github/workflows/migrate-secrets-to-org.yml

This file was deleted.

7 changes: 6 additions & 1 deletion .github/workflows/snapshot-fork-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ on:
- small
- wide
- deep
dry_run:
description: 'Run without ingesting or committing results'
required: false
default: false
type: boolean

concurrency:
group: snapshot-fork-benchmarks
Expand Down Expand Up @@ -305,7 +310,7 @@ jobs:
});
}
- name: Commit and push
if: github.event_name != 'push'
if: github.event_name != 'push' && github.event.inputs.dry_run != 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/storage-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ on:
- 4MB
- 10MB
- 16MB
dry_run:
description: 'Run without ingesting or committing results'
required: false
default: false
type: boolean

concurrency:
group: storage-benchmarks
Expand Down Expand Up @@ -144,7 +149,7 @@ jobs:
- name: Merge results
run: npx tsx benchmarks/src/merge-results.ts --input artifacts --mode storage
- name: Ingest results to platform
if: github.event_name != 'push'
if: github.event_name != 'push' && github.event.inputs.dry_run != 'true'
continue-on-error: true
env:
INGEST_URL: ${{ secrets.INGEST_URL }}
Expand Down Expand Up @@ -269,7 +274,7 @@ jobs:
});
}
- name: Commit and push
if: github.event_name != 'push'
if: github.event_name != 'push' && github.event.inputs.dry_run != 'true'
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
Loading