Github and Fogbugz

So, we integrated fogbugz and github, it seems that this mechanism works. (i.e. when you press the test button on github, the message "delivered payload" is displayed). Unfortunately, I could not find the documentation on what to put the commit message to associate the error with the commit.

I tried

git commit -am 'fixing 97047' git push origin 

and

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

Nothing works. I would like to know what I am missing - links to documentation will be rated most highly!

+7
source share
2 answers

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 

everyone should work.

I am using FogBugzId: 1234

+10
source

Source URL changed to https://github.com/github/github-services/blob/master/lib/services/fog_bugz.rb

In addition, RE has changed to:

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

This means that, for example, the word "FogBugz" will no longer work in a comment on a post. In order to be recognized, it must be something like "Error IDs: 123" or "Case: 123" along with the FogBugz number number.

+1
source

All Articles