Commit b320327 1 parent 3e1d792 commit b320327 Copy full SHA for b320327
File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -245,17 +245,18 @@ def process_issue(
245
245
246
246
formatted_body += _convert_to_markdown (KGCL_COMMANDS )
247
247
formatted_body += "</br>Fixes #" + str (issue ["number" ])
248
+ pr_title = f"Applying changes for: { issue ['title' ]} "
248
249
249
250
if os .getenv ("GITHUB_ENV" ):
250
251
with open (os .getenv ("GITHUB_ENV" ), "a" ) as env : # type: ignore
251
252
print (f"PR_BODY={ formatted_body } " , file = env )
252
- print (f"PR_TITLE={ issue [ TITLE ] } " , file = env )
253
+ print (f"PR_TITLE={ pr_title } " , file = env )
253
254
print (f"ISSUE_CREATOR={ issue [USER ]} " , file = env )
254
255
255
256
click .echo (
256
257
f"""
257
258
PR_BODY={ formatted_body }
258
- PR_TITLE={ issue [ TITLE ] }
259
+ PR_TITLE={ pr_title }
259
260
ISSUE_CREATOR={ issue [USER ]}
260
261
"""
261
262
)
You can’t perform that action at this time.
0 commit comments