Reputation: 3474
I am using GitHub and dealing with master branch and multiple release & feature branches. I know that, I can setup the email notification under settings of the repo. But this notification applies to all the repo. In my case, I just want to limit only for master branch.
How do I do?
Upvotes: 4
Views: 1786
Reputation: 1324317
You could use a GitHub Action, with:
on.<push|pull_request>.<branches|tags>
to trigger said action only on master
peter-evans/sendgrid-action
to send email with SendGrid.That way, you get more control over the notification you want to send.
Upvotes: 0