Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Option to show last commit #128

Open
motcke opened this issue Feb 26, 2020 · 1 comment
Open

Feature: Option to show last commit #128

motcke opened this issue Feb 26, 2020 · 1 comment
Labels
enhancement New feature or request

Comments

@motcke
Copy link

motcke commented Feb 26, 2020

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.

@motcke
Copy link
Author

motcke commented Feb 26, 2020

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 id
    id: false

    # Show only the first two (if exist) and limit the line length to 100.
    message:
        maxLines: 2
        maxLineChars: 50

    # Show committer name but not the email
    author:
        name: true
        email: false

    # Show commit time
    time: true

@timoschwarzer timoschwarzer added the enhancement New feature or request label Feb 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants