Reputation: 83
I recently built a server to process docker hub's webhook and run some jobs depending on the input. However, I want to log when these webhooks are sent so I need to know the format they send time in. Here is a snippet of their response:
"push_data": {
"pushed_at": 1595947332,
"images": [],
"tag": "latest",
"pusher": "xxxxxx"
}
What time format is push_data.pushed_at?
Upvotes: 1
Views: 93