From 6ceb40f3ee774774264148cffed0031fdd78cabd Mon Sep 17 00:00:00 2001 From: ciotlosm Date: Sat, 11 Jul 2026 16:14:14 +0300 Subject: [PATCH] chore(workflows): standardize shared workflow name: fields The three reusable workflows (only triggered by workflow_call) now follow the [] () format: - check-standards-drift.yml: 'Check Standards Drift' -> '[check] standards drift (callable)' - pr-check.yml: 'PR Check (shared wrapper)' -> '[check] PR check (callable)' - pr-validation.yml: 'PR Validation (shared base)' -> '[check] PR validation (callable)' `check` is the type because the workflow runs checks. `callable` is the trigger because the workflow only fires when called via workflow_call. This is a documentation/UX change; the file names and inputs are unchanged, so no consumer needs to update. Refs: n3ary/standards#21 --- .github/workflows/check-standards-drift.yml | 2 +- .github/workflows/pr-check.yml | 2 +- .github/workflows/pr-validation.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-standards-drift.yml b/.github/workflows/check-standards-drift.yml index e7e3e14..bf33929 100644 --- a/.github/workflows/check-standards-drift.yml +++ b/.github/workflows/check-standards-drift.yml @@ -1,4 +1,4 @@ -name: Check Standards Drift +name: '[check] standards drift (callable)' # Reusable workflow. Consumers call it as a job from their own # `.github/workflows/.yml`: diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index b9f312b..4682ef3 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -1,4 +1,4 @@ -name: PR Check (shared wrapper) +name: '[check] PR check (callable)' # Reusable workflow. Consumers call this from their own # `.github/workflows/pr-check.yml` instead of calling diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 3eebdba..78e40d0 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -1,4 +1,4 @@ -name: PR Validation (shared base) +name: '[check] PR validation (callable)' # Reusable workflow. Consumers call it from their own # `.github/workflows/.yml`: