Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
bioDan61596yYes. You can add hooks to run scripts before/after different events of CRUD operations of branches/commits.
Check in your .git directory for git-hooks or hooks, maybe somewhere in the examples folder, i dont quite remember.
Anyway, you can add these hooks to run scripts on the remote repository server or/and on your local repository. -
Isn't that what the "watch" button does?
Also, I think there's a setting to automatically watch new repos on your organization. -
@rookiemaverick overkill, expensive
@bioDan setting up webhooks for all my repos feels like a lot of pain, I thought of some kind of tool that I can just keep running that gives me notifs or something or a service that notifies me via email
@shellbug I think it only subs to issues not PRs? -
@JoshBent well, PRs are pretty much issues, but I don't know. I don't usually watch repos.
-
bioDan61596y
-
"You can watch a repository to receive notifications for new pull requests and issues that are created. "
https://help.github.com/articles/... -
Btw, doesn't solve the problem but this might be interesting regarding github notifications:
https://github.com/octobox/octobox -
@shellbug @bioDan "You can subscribe to *individual* conversations in issues, pull requests" not what I am after, I have set the watch stuff in the settings now and "watch"d all my repos, hopefully that solves it, also thanks @shellbug for the octobox thing, looks really interesting, thanks! though no email notifications or mobile app integration it seems.
-
psukys2326yWatch indeed gives you notifications on new events on issues and PRs, check your notification settings in github
Fuck, I keep missing PRs and comments, because github doesn't notify if you're not directly tagged, is there some better way to get notified about things like new PR on your repos or generally notifications?
question