-
Notifications
You must be signed in to change notification settings - Fork 351
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
feat: add optional job summary-title parameter #1056
Conversation
|
|
813aadd
to
b986c04
Compare
This comment was marked as resolved.
This comment was marked as resolved.
Thanks for the PR! This perfectly fits the need I described in the issue :) The code looks also good and the change is well documented. |
Thanks for the positive comments and your confirmation! Now it's over to the Cypress team to see if they agree to merge it. |
90015ba
to
2dc7382
Compare
2dc7382
to
0ec9795
Compare
0ec9795
to
662e355
Compare
Is there any chance you could also look at this enhancement PR? |
662e355
to
2bbee69
Compare
🎉 This PR is included in version 6.6.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
This PR adds an optional parameter
summary-title
to thecypress-io/github-action
.If specified, then the
summary-title
replaces the default Job Summary title "Cypress Results". The title is displayed at the top of a job summary.This is especially useful when
cypress-io/github-action
is called in more than one step in a GitHub Actions workflow, so that each job summary can be easily identified with individual summary titles showing which step it came from.example-chrome
summary-title
is applied to the example-chrome workflow.BEFORE
AFTER
summary-title
is here defined as "Chrome headless" in the first instance and "Chrome headed" in the second instance.example-chrome is the only example workflow in this repo with more than one call of
cypress-io/github-action
in a single job.Documentation
summary-title
is added to the README and some inconsistencies regarding the description of the parameterpublish-summary
are removed.Verification
References