gocd-contrib/email-notifier

How to create multiple pipline notification

Opened this issue · 3 comments

Right now I can only set up a notification:
namepipline:BuildContainers:passed

Would it be possible?
namepipline:BuildContainers:passed, namepipline:PushContainers:passed

Thanks

I have located the following comment in the code.

FilterConverter.java

  • Assumes each filter has at most 3 fields (pipeline/stage/status) split by FILTER_FIELD_SEPARATOR
    FILTER_SEPARATOR = ",";

Can you update the readme?
I use the next line:
namepipline:BuildContainers:passed,namepipline:PushContainers:passed

@marandalucas: Can you submit a PR for the README? Someone (or I) will happily accept it. :) Thank you!

Could you also please sign the CLA? It's a one-time process, I promise. Need that before the PR can be accepted.

Sorry, just to be sure, can I use regex to match for anyPipeline:anyStage:specificState ??
Like: "*:*:passed" .