-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from fleboulch/contrib/fix-branch-name-constraint
fix: remove the constraint on branch name
- Loading branch information
Showing
3 changed files
with
142 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,3 +72,76 @@ export const pushHookFixture = { | |
], | ||
total_commits_count: 4, | ||
}; | ||
|
||
export const pushHookFixtureFeatureBranch = { | ||
object_kind: 'push', | ||
before: '95790bf891e76fee5e1747ab589903a6a1f80f22', | ||
after: 'da1560886d4f094c3e6c9ef40349f7d38b5d27d7', | ||
ref: 'refs/heads/feat/add-logo', | ||
checkout_sha: 'da1560886d4f094c3e6c9ef40349f7d38b5d27d7', | ||
user_id: 4, | ||
user_name: 'John Smith', | ||
user_username: 'jsmith', | ||
user_email: '[email protected]', | ||
user_avatar: | ||
'https://s.gravatar.com/avatar/d4c74594d841139328695756648b6bd6?s=8://s.gravatar.com/avatar/d4c74594d841139328695756648b6bd6?s=80', | ||
project_id: projectFixture.id, | ||
project: { | ||
id: projectFixture.id, | ||
name: projectFixture.name, | ||
description: projectFixture.description, | ||
web_url: projectFixture.web_url, | ||
avatar_url: projectFixture.avatar_url, | ||
git_ssh_url: '[email protected]:mike/diaspora.git', | ||
git_http_url: 'http://example.com/mike/diaspora.git', | ||
namespace: projectFixture.namespace, | ||
visibility_level: 0, | ||
path_with_namespace: projectFixture.path_with_namespace, | ||
default_branch: projectFixture.default_branch, | ||
homepage: 'http://example.com/mike/diaspora', | ||
url: '[email protected]:mike/diaspora.git', | ||
ssh_url: '[email protected]:mike/diaspora.git', | ||
http_url: 'http://example.com/mike/diaspora.git', | ||
}, | ||
repository: { | ||
name: 'Diaspora', | ||
url: '[email protected]:mike/diaspora.git', | ||
description: '', | ||
homepage: 'http://example.com/mike/diaspora', | ||
git_http_url: 'http://example.com/mike/diaspora.git', | ||
git_ssh_url: '[email protected]:mike/diaspora.git', | ||
visibility_level: 0, | ||
}, | ||
commits: [ | ||
{ | ||
id: 'b6568db1bc1dcd7f8b4d5a946b0b91f9dacd7327', | ||
message: | ||
'Update Catalan translation to e38cb41.\n\nSee https://gitlab.com/gitlab-org/gitlab for more information', | ||
title: 'Update Catalan translation to e38cb41.', | ||
timestamp: '2011-12-12T14:27:31+02:00', | ||
url: 'http://example.com/mike/diaspora/commit/b6568db1bc1dcd7f8b4d5a946b0b91f9dacd7327', | ||
author: { | ||
name: 'Jordi Mallach', | ||
email: '[email protected]', | ||
}, | ||
added: ['CHANGELOG'], | ||
modified: ['app/controller/application.rb'], | ||
removed: [], | ||
}, | ||
{ | ||
id: 'da1560886d4f094c3e6c9ef40349f7d38b5d27d7', | ||
message: 'fixed readme', | ||
title: 'fixed readme', | ||
timestamp: '2012-01-03T23:36:29+02:00', | ||
url: 'http://example.com/mike/diaspora/commit/da1560886d4f094c3e6c9ef40349f7d38b5d27d7', | ||
author: { | ||
name: 'GitLab dev user', | ||
email: 'gitlabdev@dv6700.(none)', | ||
}, | ||
added: ['CHANGELOG'], | ||
modified: ['app/controller/application.rb'], | ||
removed: [], | ||
}, | ||
], | ||
total_commits_count: 4, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters