How to configure a jenkins job to send mail if a SCM commit
问题 I have problems with configuring a jenkins job that need to do the following task : scheduled every 30 minutes => OK do an update (CVS, SVN, ...) => OK send an email if a change is detected in the SCM repo => KO So my job is configured as follow : Source Code Management : cvs root / branch / ... Build Triggers : Poll SCM : */30 * * * * Build : No buils step Post-build Actions : E-mail Notification But I received emails only when the build failed and not when an update is detected. Any hint ?