We are trying to migrate from Repository Hooks to Webhooks and can't find a way to specify the Branch Filter and User Filter.
Earlier in Repository Hooks, we just had to specify the regex as below to notify a job to trigger for 'Development' branch and to ignore the commits by the user 'default_user'. What should be done on Webhooks to achieve the same result?
Branch Filter: ^Development*
User Filter: ^(?!default_user).*$
Thanks,
Prasann