@@ -11,16 +11,15 @@ permissions:
1111tracker-id : daily-syntax-error-quality
1212engine : copilot
1313tools :
14- github :
15- toolsets :
16- - default
1714 bash :
1815 - " find .github/workflows -name '*.md' -type f ! -name 'daily-*.md' ! -name '*-test.md'"
1916 - " gh aw compile *"
17+ - " gh aw compile /tmp/gh-aw/syntax-error-tests/*.md"
2018 - " cat .github/workflows/*.md"
2119 - " head -n * .github/workflows/*.md"
22- - " cp .github/workflows/*.md /tmp/*.md"
23- - " cat /tmp/*.md"
20+ - " cp .github/workflows/*.md /tmp/gh-aw/syntax-error-tests/*.md"
21+ - " cat /tmp/gh-aw/syntax-error-tests/*.md"
22+ - " mkdir -p /tmp/gh-aw/syntax-error-tests"
2423safe-outputs :
2524 create-issue :
2625 expires : 3d
@@ -162,8 +161,8 @@ For each workflow:
162161
1631621. **Copy workflow to /tmp** for testing:
164163 ` ` ` bash
165- mkdir -p /tmp/syntax-error-tests
166- cp .github/workflows/selected-workflow.md /tmp/syntax-error-tests/test-1.md
164+ mkdir -p /tmp/gh-aw/ syntax-error-tests
165+ cp .github/workflows/selected-workflow.md /tmp/gh-aw/ syntax-error-tests/test-1.md
167166 ```
168167
1691682 . ** Introduce ONE error** from a different category:
@@ -187,7 +186,7 @@ For each test case:
187186
1881871 . ** Attempt to compile** the modified workflow:
189188 ``` bash
190- cd /tmp/syntax-error-tests
189+ cd /tmp/gh-aw/ syntax-error-tests
191190 gh aw compile test-1.md 2>&1 | tee test-1-output.txt
192191 ```
193192
0 commit comments