buggyrace / buggy-race-server

Race server and supporting material for running a "Buggy Racing" Python programming project
https://www.buggyrace.net
Other
1 stars 0 forks source link

add config for setting task issue csv header row #207

Closed davewhiteland closed 6 months ago

davewhiteland commented 6 months ago

Currently the task issues CSV — used for setting GitHub issues — doesn't have a header row. But GitLab expects one: see https://docs.gitlab.com/ee/user/project/issues/csv_import.html

Only need to add title,description so could make this either default (would need to change the existing GitHub issue injection code to skip the first row, or else make it conditional (e.g., HAS_HEADER_ROW_IN_ISSUES_CSV or even have ISSUES_CSV_HEADER_ROW being a string that is written (or nothing if it's empty).

davewhiteland commented 6 months ago

done in bd5cd61fb3fa9ef6f69cda5ea735ae7f46a85f6e as BUGGY_EDITOR_ISSUES_CSV_HEADER_ROW

Also documented: see www.buggyrace.net/docs/static-content/issues-csv.