You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For my use case, it would be very much helpful if for each pipeline I'll be able to see last commit details (id, message, author name/email, time).
This way I'll be able to understand what feature was pushed and track the progress. Also, in case the pipeline failed it's easier to figure out the reason.
The text was updated successfully, but these errors were encountered:
Here's one way of how the configuration will look for this feature:
# Do not show commit (same as without the feature)commit: null
or
commit:
# don't show commit idid: false# Show only the first two (if exist) and limit the line length to 100.message:
maxLines: 2maxLineChars: 50# Show committer name but not the emailauthor:
name: trueemail: false# Show commit timetime: true
For my use case, it would be very much helpful if for each pipeline I'll be able to see last commit details (id, message, author name/email, time).
This way I'll be able to understand what feature was pushed and track the progress. Also, in case the pipeline failed it's easier to figure out the reason.
The text was updated successfully, but these errors were encountered: