Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
repos: | |
####### | |
# ALL # | |
####### | |
- repo: git://github.com/pre-commit/pre-commit-hooks | |
rev: v2.5.0 | |
hooks: | |
# Git style | |
- id: check-added-large-files |
@NonCPS | |
/* | |
* slackChannel = '#channel,@user' - Slack channel for notifications, space- or comma-separated list (leave empty to use global Jenkins settings) | |
* silentNotifyFor = ['STARTED'] - Silent notifications for certain buildStatuses. E.g.: silentNotifyFor = ['STARTED','SUCCESS','FAILURE','ABORTED'] | |
*/ | |
def notifyBuild(String buildStatus = 'FAILURE', String customMessage = null) { | |
// buildStatus of null means FAILURE | |
buildStatus = buildStatus ?: 'FAILURE' | |
// Default values |
Related Setup: https://gist.github.com/hofmannsven/6814278
Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/