Skip to content

Commit aa0ccda

Browse files
committed
Add id to submitSnapshot success response
1 parent 1e68a1d commit aa0ccda

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/snapshot.ts

Lines changed: 2 additions & 1 deletion
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)