fix(newrelic): set default revision template for notifications #375
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Custom Revision Template for NewRelic Service
Goal
Allow specifying a custom revision template for the NewRelic notification service, which enables support for projects with multiple sources. The default template assumes a specific structure (
{{.app.status.operationState.syncResult.revision}}
) that doesn't work for all project configurations, especially those with multiple sources.Changes Made
NewrelicNotification.GetTemplater
method to use theRevision
field as a template string when provided by the userChangelog
andUser
) that already support custom templatesTests Added
Updated
TestGetTemplater_Newrelic
innewrelic_test.go
with two test cases:{{.app.status.operationState.syncResult.revision}}
is used when no custom Revision is provided{{.app.status.custom.revision}}
) is used instead of the defaultThese tests verify that users can now configure custom paths to retrieve revision information that matches their specific project structure, including support for multiple sources.