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

Suggest people search existing issues in error message #350

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions buildpacks/ruby/src/user_errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,19 @@ pub(crate) fn on_error(err: libcnb::Error<RubyBuildpackError>) {
status page https://status.heroku.com/ to see if there is an ongoing incident. Once
all incidents have resolved please retry your build.

If the issue persists, please try to reproduce the behavior locally using the `pack`
CLI. If you can reproduce the behavior locally and believe you've found a bug in the
buildpack or the framework please open an issue on the buildpack's GitHub repository.
If the issue persists, try to reproduce the behavior locally using the `pack` CLI.
If you can reproduce the behavior locally and believe you've found a bug in the
buildpack or framework, please visit the buildpack's GitHub repository at
https://github.com/heroku/buildpacks-ruby/issues. Search for any existing issues
related to this error. If none are found, please consider opening a new issue.

For more details on expected behavior, see the application contract at
https://github.com/heroku/buildpacks-ruby/blob/main/docs/application_contract.md
If you notice a difference between the contract and actual buildpack behavior,
please open an issue with a minimal application to reproduce the problem.

For application-specific support, consider asking on official Heroku support
channels or Stack Overflow.
"}),
};
}
Expand Down
Loading