Skip to content

Commit 7c5d0f2

Browse files
authored
Merge pull request #117 from gitulisca-enterprise-cloud-testing-B/gitulisca/add-id-to-snapshot-response
Add id to submitSnapshot success response
2 parents 1e68a1d + aa0ccda commit 7c5d0f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/snapshot.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,8 @@ export async function submitSnapshot(
189189
const result = response.data.result
190190
if (result === 'SUCCESS' || result === 'ACCEPTED') {
191191
core.notice(
192-
`Snapshot successfully created at ${response.data.created_at.toString()}`
192+
`Snapshot successfully created at ${response.data.created_at.toString()}` +
193+
` with id ${response.data.id}`
193194
)
194195
} else {
195196
core.error(

0 commit comments

Comments
 (0)