Reporters

Reporters are like publishers but only applicable to Maven projets.

Component: reporters
Macro:reporter
Entry Point:jenkins_jobs.reporters

Example:

job:
  name: test_job
  project-type: maven

  reporters:
    - email:
        recipients: breakage@example.com
email

Email notifications on build failure.

Parameters:
  • recipients (str) – Recipient email addresses
  • notify-every-unstable-build (bool) – Send an email for every unstable build (default true)
  • send-to-individuals (bool) – Send an email to the individual who broke the build (default false)

Example:

reporters:
  - email:
      recipients: breakage@example.com

Previous topic

Publishers

Next topic

SCM

This Page