Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4ff81e8
WIP: fuzzer analysis automation (to be cleaned up after merge)
joseph-isaacs Nov 13, 2025
6c8e6b8
Merge remote-tracking branch 'origin/develop' into ji/cluade-code-fuz…
joseph-isaacs Nov 13, 2025
98cda38
docs: update fuzzer analysis documentation for PR #5292's approach
joseph-isaacs Nov 13, 2025
20548ba
feat: add Stage 2 automated fix workflow for fuzzer crashes
joseph-isaacs Nov 13, 2025
a6b74a9
perf: optimize fuzzer-fix-automation trigger
joseph-isaacs Nov 13, 2025
b6d41df
fix: handle issues opened with fuzzer label
joseph-isaacs Nov 13, 2025
cd3ce0d
feat: add manual trigger support for fuzzer fix automation
joseph-isaacs Nov 13, 2025
9fee66d
Merge branch 'develop' into ji/cluade-code-fuzzz-issue
joseph-isaacs Nov 13, 2025
4239a61
chore: remove redundant GH_TOKEN env var
joseph-isaacs Nov 13, 2025
5fa7459
clean
joseph-isaacs Nov 13, 2025
4b37b7a
fix: add GH_TOKEN to fetch issue details step
joseph-isaacs Nov 13, 2025
cc38f07
feat: add validation and crash reproduction checks
joseph-isaacs Nov 13, 2025
97d7bc6
feat: always run fuzzer with full backtrace
joseph-isaacs Nov 13, 2025
8f14e99
feat: add fuzzer build check before reproduction
joseph-isaacs Nov 13, 2025
111b2c2
refactor: simplify Claude prompt and add verification
joseph-isaacs Nov 13, 2025
63cdf42
fix: map target names to correct artifact names
joseph-isaacs Nov 13, 2025
faea7d2
perf: use debug mode for faster fuzzer builds
joseph-isaacs Nov 13, 2025
fd66164
feat(workflows): improve fuzzer fix automation with progressive updates
joseph-isaacs Nov 13, 2025
31bb757
feat(workflows): include all code inline in fuzzer fix comments
joseph-isaacs Nov 13, 2025
a41db7a
Merge develop and resolve fuzz.yml conflicts
joseph-isaacs Nov 14, 2025
2d78d21
refactor: simplify fuzzer-fix-automation triggers
joseph-isaacs Nov 14, 2025
0958708
security: restrict RUST_BACKTRACE bash pattern
joseph-isaacs Nov 14, 2025
40c8089
u
joseph-isaacs Nov 14, 2025
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
8 changes: 8 additions & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@ jobs:
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
gh_token: ${{ secrets.GITHUB_TOKEN }}

attempt-fix-io:
name: "Attempt Fix for IO Fuzz Crash"
needs: report-io-fuzz-failures
if: needs.report-io-fuzz-failures.outputs.issue_number != ''
uses: ./.github/workflows/fuzzer-fix-automation.yml
with:
issue_number: ${{ needs.report-io-fuzz-failures.outputs.issue_number }}
secrets: inherit

ops_fuzz:
name: "Array Operations Fuzz"
Expand Down
Loading
Loading