Basically, I have post-receive hooks on a central repo which I use to push automatically to github when it receive a set of snapshots.
I also have a bot creating notes on that central repository to refs/notes/signoff and I am trying to get the notes pushed to github in the same way. So, I tried using the post-commit hook, but it does not seem to fire when git notes is used. Is there a specific hook I could use or any other way of achieving the same thing?
(We are creating the notes on the central repo to avoid notes conflicts which are a pain to sort out)