From 63f1a67b431f0ea90074d705db82fde291870e45 Mon Sep 17 00:00:00 2001 From: Andrew Thrasher Date: Fri, 6 Feb 2026 11:15:28 -0500 Subject: [PATCH 1/2] chore: add WDL-specific instructions for copilot --- .github/instructions/wdl.instructions.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/instructions/wdl.instructions.md diff --git a/.github/instructions/wdl.instructions.md b/.github/instructions/wdl.instructions.md new file mode 100644 index 000000000..e202f3162 --- /dev/null +++ b/.github/instructions/wdl.instructions.md @@ -0,0 +1,12 @@ +--- +applyTo: "**/*.wdl" +--- +# This file contains instructions for the WDL code style in the workflows directory. + +# WDL Development Instructions + +- Use the latest version of the WDL spec from https://github.com/openwdl/wdl/ +- Use the CONTRIBUTING.md guide in this repository for general coding style and best practices. +- Use the best-practices.md guide in this repository for WDL-specific best practices. +- Prefer the strings in template/common-parameter-meta.txt when writing parameter meta sections. +- Use the templates in template/task-examples.wdl when writing new tasks. From 50fbc59b370ecbfdd0e5426bcf35c8c415971a70 Mon Sep 17 00:00:00 2001 From: Andrew Thrasher Date: Fri, 6 Feb 2026 11:18:11 -0500 Subject: [PATCH 2/2] chore: add sprocket checks --- .github/instructions/wdl.instructions.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/instructions/wdl.instructions.md b/.github/instructions/wdl.instructions.md index e202f3162..0f3fbef0a 100644 --- a/.github/instructions/wdl.instructions.md +++ b/.github/instructions/wdl.instructions.md @@ -10,3 +10,4 @@ applyTo: "**/*.wdl" - Use the best-practices.md guide in this repository for WDL-specific best practices. - Prefer the strings in template/common-parameter-meta.txt when writing parameter meta sections. - Use the templates in template/task-examples.wdl when writing new tasks. +- All WDL code should be checked with Sprocket lint and formatted with Sprocket format before committing.