Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-11-07Enable even more frozen string in lib/gitlabgfyoung
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
2018-10-01Add variables on pipeline webhookPierre Tardy
2018-08-31Use sample data for push event when no commits createdTakuya Noguchi
2018-08-10#47845 - Propagate failure_reason to job webhook.Maciej Sokołowski
2018-06-26Remove the use of `is_shared` of `Ci::Runner`Kamil Trzciński
2018-04-05Merge branch 'jej/mattermost-notification-confidentiality-10-6' into ↵Douwe Maan
'security-10-6' [10.6] Prevent notes on confidential issues from being sent to chat See merge request gitlab/gitlabhq!2366 # Conflicts: # app/helpers/services_helper.rb
2018-03-08Merge branch 'ce-jej/github-project-service-for-ci' into 'master'Douwe Maan
Backport changes from introducing GithubService interation in EE See merge request gitlab-org/gitlab-ce!17607
2018-03-07Backport changes from EE's GithubService integrationJames Edwards-Jones
Adds detailed_status to pipeline hook data Adds detailed_description option for Services Integration edit page renders 404 if a service is disabled
2018-03-07Use Project#full_name instead of name_with_namespaceDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-10-05Use full URL of user avatar on webhook pushVitaliy @blackst0ne Klachkov
2017-09-22Workaround for #38259Andrew Newdigate
2017-08-28Simplify system hook testing and guarantee test will fireStan Hu
The change in !11728 would cause an arbitrary project to be chosen to test system hooks, and it's likely that the project would not have any commits or relevant commits to test the hook. This would prevent admins from verifying that the hook fired. Instead of trying to create a representative hook dynamically, just send static data to guarantee the hook will actually be tested. Closes #37067
2017-07-28Load and process at most 100 commits when pushing into default branchDouwe Maan
2017-07-20Wrong data type when testing webhooksAlexander Randa
2017-06-01Rename pipeline methods related to legacy stagesGrzegorz Bizon
2017-05-15Merge branch 'dturner/username' into 'master' Rémy Coutable
add username field to push webhook Closes #32136 See merge request !11272
2017-05-13Added repository_update hookGabriel Mazetto
2017-05-11Add username field to push webhookDavid Turner
Signed-off-by: David Turner <novalis@novalis.org>
2017-05-10Enable the Style/TrailingCommaInLiteral copRémy Coutable
Use the EnforcedStyleForMultiline: no_comma option. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-27improves test settings for chat notification services for empty projectsTiago Botelho
2017-03-06Reinstitute a core `manual` status for manual actionsGrzegorz Bizon
2017-01-25Adding links to user & build in Chat NotificationsPoornima M
2016-12-06Added Ci::Stage specsKamil Trzcinski
2016-12-06Introduce `Ci::Stage`, right now this is artificial object that is build ↵Kamil Trzcinski
dynamically.
2016-10-28Fix lightweight tags not processed correctly by GitTagPushServiceAlejandro Rodríguez
When we updated gitlab_git to 10.4.1, `tag.target` changed from pointing to the sha of the tag to the sha of the commit the tag points to. The problem is that only annotated tags have `object_sha`s, lightweight tags don't (it's nil), so (only) in their case we still need to use `tag.target`.
2016-08-12Simplify the name for data builder, feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5620#note_13671791
2016-08-12Prefer extend self over module_function, feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5620#note_13672004 https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5620#note_13810498
2016-08-11Remove stage parameter from send payloadKamil Trzcinski
2016-08-05We still need to skip loading config_processor if skip_ci?Lin Jen-Shin
2016-08-04Move those builders to their own namespace, feedback:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5620#note_13540099
2016-08-02Implement pipeline hooks, extracted from !5525Lin Jen-Shin
Closes #20115