From 6b2d7f9726986f63e7cd5e5041ce68bc60459247 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 1 Jun 2026 12:02:54 -0700 Subject: [PATCH] Rename CIFuzz workflow to fuzz Match the naming convention used by the other workflows: lowercase, single-word names that describe what the workflow does rather than the tool it uses. Also rename the job from Fuzzing to fuzz for consistency. --- .github/workflows/{cifuzz.yml => fuzz.yml} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{cifuzz.yml => fuzz.yml} (97%) diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/fuzz.yml similarity index 97% rename from .github/workflows/cifuzz.yml rename to .github/workflows/fuzz.yml index d6b94918..660e8c49 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/fuzz.yml @@ -1,11 +1,11 @@ -name: CIFuzz +name: fuzz on: [pull_request] permissions: contents: read jobs: - Fuzzing: + fuzz: runs-on: ubuntu-latest steps: - name: Build fuzzers