mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-29 07:01:04 +03:00
Send valid JSON to autosync workflows for multi-line commit messages (#1981)
Allow multi-line commit message to be used in autosync workflows using the toJSON context function. The toJSON function is required to pretty-print JSON objects to the log.
This commit is contained in:
committed by
GitHub
parent
bb7373ee62
commit
50a2e911f2
@@ -28,6 +28,6 @@ jobs:
|
|||||||
"ref": "${{ github.ref }}",
|
"ref": "${{ github.ref }}",
|
||||||
"prNumber": "${{ github.event.pull_request.number }}",
|
"prNumber": "${{ github.event.pull_request.number }}",
|
||||||
"prTitle": "${{ github.event.pull_request.title }}",
|
"prTitle": "${{ github.event.pull_request.title }}",
|
||||||
"prDescription": "${{ github.event.pull_request.description }}",
|
"prDescription": "${{ toJSON(github.event.pull_request.description) }}",
|
||||||
"sha": "${{ github.sha }}"
|
"sha": "${{ github.sha }}"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,5 +32,5 @@ jobs:
|
|||||||
{
|
{
|
||||||
"ref": "${{ github.ref }}",
|
"ref": "${{ github.ref }}",
|
||||||
"sha": "${{ github.sha }}",
|
"sha": "${{ github.sha }}",
|
||||||
"commitMessage": "${{ github.event.commits[0].message }}"
|
"commitMessage": "${{ toJSON(github.event.commits[0].message) }}"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user