gitlab-org--gitlab-foss/changelogs
Christian Couder f00db0c342 Support adding and removing labels w/ push opts
MergeRequests::PushOptionsHandlerService has been updated to allow
adding and removing labels to a merge request using git push options.

To create a new merge request and add 2 labels to it:

      git push -u origin -o merge_request.create \
        -o merge_request.label="My label 1" \
        -o merge_request.label="My label 2"

To update an existing merge request and remove a label while
adding a different label:

      git push -u origin -o merge_request.label="My added label" \
        -o merge_request.unlabel="My removed label"

Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/64320
2019-09-04 12:11:24 +02:00
..
unreleased Support adding and removing labels w/ push opts 2019-09-04 12:11:24 +02:00
README.md Extend yamllint test to changelogs 2019-07-23 12:23:51 +00:00
add-name-parameter-to-project-environments-api.yml Add name & search parameters to project environments API 2019-06-24 12:18:40 +00:00
archive.md Fix Typos 2019-06-12 15:51:29 +00:00

README.md

Generating changelog entries

To generate and validate your changelog entries:

  1. Run bin/changelog to generate.
  2. Run yamllint changelogs to validate.

See development/changelog documentation for detailed usage.