-
Beta Was this translation helpful? Give feedback.
Replies: 47 comments 28 replies
-
|
👍 The current display is fine most of the time; but we use a LOT of actions, and not being able to see exact timestamps in the UI makes it fairly difficult to do forensics when things go wrong. |
Beta Was this translation helpful? Give feedback.
-
|
This would be GREAT. |
Beta Was this translation helpful? Give feedback.
-
|
This is shocking in its absence. The UI happily shows you far less useful, yet presumably similarly sourced information like "4 days ago", but appears designed specifically to not show you an actual date and time. |
Beta Was this translation helpful? Give feedback.
-
|
+1 to this request. I'm an Engineering Manager with about 50 devs at the company. We use Github actions for all our deployments and CI/CD. Having an entire month's worth of actions grouped into "last month" is very hard to work with. It's even worse that when you click on the action it still shows you "last month" instead of the date and time it was run. |
Beta Was this translation helpful? Give feedback.
-
|
Simple chrome extension that solves the issue: https://github.com/jan0991/github-actions-full-datetime |
Beta Was this translation helpful? Give feedback.
-
|
+1 - I was just trying to figure out which release caused issues in production, and having the exact build time to compare against my logs would make my job a lot easier. |
Beta Was this translation helpful? Give feedback.
-
|
HOVER the mouse on the "x days/months/years ago" and you have it I just put it here because if you google it just looking for the exact time and don't care about the feature and you are like me and read in diagonal . |
Beta Was this translation helpful? Give feedback.
-
|
The hover isn't working for me [Chrome Version 120.0.6099.234 (Official Build) (arm64)]. I can see a "datetime" and a "title" attribute that have the information, but nothing happens when I hover and when I activate hover in Developer Tools on any of the elements, nothing happens, |
Beta Was this translation helpful? Give feedback.
-
|
The hover is a little annoying to do when you have a lot actions to go over. The tag GitHub uses is documented at https://github.com/github/relative-time-element. So if you have a plugin that allows you to run arbitrary js on a page, then you can do something like: document.getElementsByTagName('relative-time').forEach(node => {
node.setAttribute('format', 'datetime');
node.setAttribute('hour', 'numeric');
node.setAttribute('minute', 'numeric');
node.setAttribute('second', 'numeric');
})and it'll change the format of the time to be more full. But I really, really hope GitHub put in a toggle switch for this in the preferences! |
Beta Was this translation helpful? Give feedback.
-
|
Any update on this this would be really nice to have |
Beta Was this translation helpful? Give feedback.
-
|
We need exact timestamps for post-mortems. Please add a mouseover or something that gives us the exact time and timezone. The existing "Manually triggered last week" stuff isn't good enough to help us track and debug errors. |
Beta Was this translation helpful? Give feedback.
-
|
As others have said, you can see this on hover, however it would be nice to be able to see it quicker and easier for skimming through pages of runs |
Beta Was this translation helpful? Give feedback.
-
2024-04-26-12-40-31.online-video-cutter.com.mp4When u use the mobile web mode, it'll show a glimpse when u reload it, really weird design. |
Beta Was this translation helpful? Give feedback.
-
|
+1 for this feature. In addition it would be nice to have the current date/time exposed in a top-level variable that can be included in the |
Beta Was this translation helpful? Give feedback.
-
|
Bubbling this up because it solves the problem (as of today 2024.05.30 !!): https://github.com/orgs/community/discussions/58663#discussioncomment-9608722 In a nutshell, @BitSteve created a Chrome plugin that adds a full date/time next to the existing relative date/time. |
Beta Was this translation helpful? Give feedback.
-
|
GitHub please fix this. It's absurd that I have to install a browser extension just to get this basic info. I'm an engineer, I want precision from my tooling. |
Beta Was this translation helpful? Give feedback.
-
|
If you want to see the exact datetime an action was run, you can right-click on the Actions page and inspect the source. Look for the Personally, the relative time works well in most cases, but when I do need the exact timestamp, it's right there in the DOM. That said, +1 to getting this fixed (assuming it's a bug), since the exact time is already sent to the client but just not displayed. |
Beta Was this translation helpful? Give feedback.
-
|
I'm using the solution from above as a bookmarklet, works like charm. javascript:(function (){
let s = document.getElementsByTagName('relative-time');
for (let node of s){
node.setAttribute('format', 'datetime');
node.setAttribute('hour', 'numeric');
node.setAttribute('minute', 'numeric');
node.setAttribute('time-zone-name', 'shortOffset');
}})(); |
Beta Was this translation helpful? Give feedback.
-
|
My suggestion here: At least make it (especially the rounding) consistent. e.g. Chrome extension: kaliiiiiiiiii/github-accurate-timedelta (Chrome webstore) |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
Celebrating 2+ years of users complaining about this issue with no update from Github. 🎉🎂🎉 What do you learn when users are so frustrated with your UX that they write their own browser extensions to fix it??? |
Beta Was this translation helpful? Give feedback.
-
|
Are there any estimates? |
Beta Was this translation helpful? Give feedback.
-
|
@mikeplem that's not the place we want and need timestamps. |
Beta Was this translation helpful? Give feedback.
-
|
Here in the middle of an incident alert, I can't believe GitHub is displaying "last week" on our last service prod run which was 10 days ago. Please prioritize & fix this. Developers need precision, not to have their hands held with inaccurate human readable timestamps. |
Beta Was this translation helpful? Give feedback.
-
|
Please prioritise this! |
Beta Was this translation helpful? Give feedback.
-
|
Also see ref.: https://github.com/orgs/community/discussions/41845 |
Beta Was this translation helpful? Give feedback.
-
|
GitHub, I need to know the exact time and date when an action started. This vague nonsense makes it impossible. You've not given us this information after 2 years of complaints? Why not? |
Beta Was this translation helpful? Give feedback.
-
|
Can this just be hotfixed with a tooltip that displays the exact date and time already? |
Beta Was this translation helpful? Give feedback.
-
|
Looks like they've implemented it.
|
Beta Was this translation helpful? Give feedback.
-
|
👋 😄 Last Thursday (September 18th), we released a change to improve how the date/time is being represented in Actions workflow executions. Previously, the exact date/time of a GitHub Action execution was only visible on hover as you all have described in this thread (see the screenshot below, which was pulled from the original discussion comment here), making it harder to quickly reference when a run occurred.
Now, we've introduced a 1 hour threshold before transitioning from relative to absolute time to improve clarity and efficiency for anyone tracking workflow runs. To strike a good balance between providing enough information for a user to correlate changes in their system over the course of the same day with an exact
Feel free to leave a comment in this thread with any thoughts or feedback! I worked on this with a colleague alongside my normal, day-to-day work, and we do have ideas for how to improve this, and we welcome continued, constructive feedback. I know the preexisting time display behavior is annoying and makes the experiences of tracking workflow runs unideal (to say the least). We are working to improve it! |
Beta Was this translation helpful? Give feedback.







👋 😄
Last Thursday (September 18th), we released a change to improve how the date/time is being represented in Actions workflow executions.
Previously, the exact date/time of a GitHub Action execution was only visible on hover as you all have described in this thread (see the screenshot below, which was pulled from the original discussion comment here), making it harder to quickly reference when a run occurred.
Now, we've introduced a 1 hour threshold before transitioning from relative to absolute time to improve clarity and efficiency for anyone tracking workflow runs. To strike a good balance between providing enough information for a user to correlate changes in their system over the c…