mirror of
https://github.com/Pull-Pal/pull-pal.git
synced 2024-11-04 09:17:40 -05:00
25 lines
440 B
Cheetah
25 lines
440 B
Cheetah
|
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 }}
|
||
|
|
||
|
Respond in the exact format:
|
||
|
Files:
|
||
|
{{ range $index, $file := .Files }}
|
||
|
- name: {{ $file.Path }}
|
||
|
contents:
|
||
|
[new {{ $file.Path }} contents]
|
||
|
{{ end }}
|
||
|
|
||
|
Notes:
|
||
|
[additional context about your changes]
|