Skip to main content

GA-F004: Missing workflow name

Info Style

Why This Matters

Without a top-level `name:` field, GitHub displays the workflow filename (e.g., "ci.yml") in the Actions tab. A descriptive name like "CI Pipeline" makes it easier to identify workflows at a glance.

How to Fix

Add a descriptive name at the top of the workflow

Before (incorrect)

on: push
jobs:
  build: ...

After (correct)

name: CI Pipeline
on: push
jobs:
  build: ...

Rule Details

Rule Code
GA-F004
Severity
Info
Category
Style

Related Rules