From 652fc08eba8e4c380527002ea5fe2b6ee5e50ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Kadir=20Ak=C4=B1n?= Date: Fri, 16 May 2025 11:05:12 +0300 Subject: [PATCH] Update csv_linter.yml --- .github/workflows/csv_linter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/csv_linter.yml b/.github/workflows/csv_linter.yml index e561dbf..155fdf6 100644 --- a/.github/workflows/csv_linter.yml +++ b/.github/workflows/csv_linter.yml @@ -37,8 +37,8 @@ jobs: with open("prompts.csv", "r", encoding="utf-8") as f: reader = csv.reader(f) headers = next(reader) - if headers != ["act", "prompt"]: - print("Error: CSV headers must be exactly [act, prompt]") + if headers != ["act", "prompt", "for_devs"]: + print("Error: CSV headers must be exactly [act, prompt, for_devs]") exit(1) for row_num, row in enumerate(reader, 2): if len(row) != 2: