2023-04-22 14:39:54 -04:00
|
|
|
Files:
|
|
|
|
{{ range $index, $file := .Files }}
|
|
|
|
- name: {{ $file.Path }}:
|
|
|
|
contents:
|
|
|
|
```
|
|
|
|
{{ $file.Contents }}
|
|
|
|
```
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
Modify the files above to accomplish the following task:
|
|
|
|
Subject: {{ .Subject }}
|
|
|
|
Body:
|
|
|
|
{{ .Body }}
|
|
|
|
|
2023-09-04 16:44:59 -04:00
|
|
|
Respond in a parseable YAML format based on the following template. Respond only with YAML, and nothing else:
|
|
|
|
files:
|
2023-04-22 14:39:54 -04:00
|
|
|
{{ range $index, $file := .Files }}
|
2023-09-04 16:44:59 -04:00
|
|
|
-
|
|
|
|
path: {{ $file.Path }}
|
|
|
|
contents: |
|
|
|
|
[new {{ $file.Path }} contents]
|
2023-04-22 14:39:54 -04:00
|
|
|
{{ end }}
|
2023-09-04 16:44:59 -04:00
|
|
|
notes: |
|
|
|
|
[additional context about your changes]
|