Question

So we have integrated fogbugz and github, the actual mechanism seems to work. (i.e. when pushing the "test" button on github, the message "payload delivered" is shown) Unfortunately, cannot find the documentation on what to put in the commit message to tie the bug to the commit.

I have tried

git commit -am 'fixing 97047'
git push origin

and

git commit -am 'fixing #97047'
git push origin

Neither seems to work. Would love to know what I'm missing - links to documentation would be most appreciated!

Was it helpful?

Solution

The case number should be of the form:

\b((FogBug[sz]|Case|Bug[zs]*(?:ID)*):(\d+)

so

   FogBugz:1234
   FogBugs:1234
   Case:1234
   Bugz:1234

should all work.

I use FogBugzId:1234

OTHER TIPS

The URL to the source code has changed to https://github.com/github/github-services/blob/master/lib/services/fog_bugz.rb

Also, the RE has changed to:

/\s*(?:Bug[zs]*\s*IDs*\s*|Case[s]*)[#:; ]+((\d+[ ,:;#]*)+)/i)

Which means, for example the word "FogBugz" will no longer work in the check-in comment. It will have to be something like "Bug IDs:123" or "Case:123" along with the FogBugz case number in order to be recognized.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top