From a0cf73a8615ca30bbd6f8a4bedbafdacf35ee8ef Mon Sep 17 00:00:00 2001 From: Bruno Borges Date: Thu, 26 Feb 2026 13:55:50 -0500 Subject: [PATCH] Add missing name field to workflow frontmatter The parseWorkflowMetadata function requires both name and description fields. Added name to relevance-check.md and relevance-summary.md so they appear in the generated README.workflows.md. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/README.workflows.md | 2 ++ workflows/relevance-check.md | 1 + workflows/relevance-summary.md | 1 + 3 files changed, 4 insertions(+) diff --git a/docs/README.workflows.md b/docs/README.workflows.md index 1675151f..046d7d9a 100644 --- a/docs/README.workflows.md +++ b/docs/README.workflows.md @@ -34,3 +34,5 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agentic-workflows) for guideline | Name | Description | Triggers | | ---- | ----------- | -------- | | [Daily Issues Report](../workflows/daily-issues-report.md) | Generates a daily summary of open issues and recent activity as a GitHub issue | schedule | +| [Relevance Check](../workflows/relevance-check.md) | Slash command to evaluate whether an issue or pull request is still relevant to the project | slash_command, roles | +| [Relevance Summary](../workflows/relevance-summary.md) | Manually triggered workflow that summarizes all open issues and PRs with a /relevance-check response into a single issue | workflow_dispatch | diff --git a/workflows/relevance-check.md b/workflows/relevance-check.md index 7a1eb9a7..46a96f93 100644 --- a/workflows/relevance-check.md +++ b/workflows/relevance-check.md @@ -1,4 +1,5 @@ --- +name: Relevance Check description: "Slash command to evaluate whether an issue or pull request is still relevant to the project" on: slash_command: diff --git a/workflows/relevance-summary.md b/workflows/relevance-summary.md index c2f4aa28..ae99747c 100644 --- a/workflows/relevance-summary.md +++ b/workflows/relevance-summary.md @@ -1,4 +1,5 @@ --- +name: Relevance Summary description: "Manually triggered workflow that summarizes all open issues and PRs with a /relevance-check response into a single issue" on: workflow_dispatch: