-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter out commits by some regular expression #26
Comments
I've implemented this in my fork here. However, the changes I made were significant. I'm not sure if you'd be willing to accept these changes. If so, I'm happy to open a PR. If not, I will continue to maintain my fork. |
I like the idea of adding regex and filtering out commits. We could probably make use of regex so people can strip off footers too #25 |
Please make a PR against the please make a copy of the |
Thanks for getting back with me. There's a lot of work to clean up the repo IMO, I am happy to start opening smaller PRs to get that out of the way first. For example, I was able to get rid of the We can start discussing details in PRs if you'd like. Please know that I am involved heavily in other projects so I don't have a lot of time to spend here. My issue was opened in October and I only received a response now, 2 months later. I completely respect that you likely had reasons for not being very active, but it will be difficult to come back to this only every couple of months. I think it would help if we can push through my changes with a quicker turnaround. Hopefully that's something you can accommodate. Thank you for your time! |
I apologize, I should have reviewed your There may not be much left to do then. I'll compare my changes with yours and open PRs as needed to get to parity with my fork. |
One other thing I want to recommend. I personally find it tedious to constantly update my actions to use For the purposes of my own needs, I went with |
That sounds great to me. I like the idea of keeping PRs small! If a long list of features is worth adding, I will swap to semantic versioning. Otherwise, I plan to increase the version whenever there is a breaking change or new feature. You're welcome to open PRs and make suggestions anytime! |
I'd like the ability to specify some filter criteria for the commits that get published as a notification. If we were to use conventional commits, I'd like only
feat
andfix
commits to result in a notification. Other commits (including those in-between, when multiple commits are present) should be ignored (excluded from the notification payload).One way to provide this would be a way to specify regular expressions that must match the subject line of each commit (I'd expect multiple regular expressions to be
OR
'd together):So if I have three commits in a single push:
The only commits I'd expect to see in my discord notification are:
I can't think of a way to do this outside of the action itself. I suspect this may need to be implemented.
The text was updated successfully, but these errors were encountered: