Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
21a5744c
Commit
21a5744c
authored
Jan 16, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
18f1da43
e058ab10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
.gitlab/issue_templates/Feature proposal.md
.gitlab/issue_templates/Feature proposal.md
+1
-1
doc/development/contributing/issue_workflow.md
doc/development/contributing/issue_workflow.md
+8
-8
qa/qa/git/repository.rb
qa/qa/git/repository.rb
+4
-0
No files found.
.gitlab/issue_templates/Feature proposal.md
View file @
21a5744c
...
...
@@ -20,4 +20,4 @@
### Links / references
/label ~
"feature proposal"
/label ~
feature
doc/development/contributing/issue_workflow.md
View file @
21a5744c
...
...
@@ -6,7 +6,7 @@ scheduling into milestones. Labelling is a task for everyone.
Most issues will have labels for at least one of the following:
-
Type: ~
"feature proposal"
, ~bug, ~customer, etc.
-
Type: ~
feature
, ~bug, ~customer, etc.
-
Subject: ~wiki, ~"container registry", ~ldap, ~api, ~frontend, etc.
-
Team: ~Plan, ~Manage, ~Quality, etc.
-
Stage: ~"devops:plan", ~"devops:create", etc.
...
...
@@ -27,8 +27,8 @@ labels, you can _always_ add the team and type, and often also the subject.
Type labels are very important. They define what kind of issue this is. Every
issue should have one or more.
Examples of type labels are ~
"feature proposal"
, ~bug, ~customer, ~security,
and ~
"direction"
.
Examples of type labels are ~
feature
, ~bug, ~customer, ~security,
and ~
direction
.
A number of type labels have a priority assigned to them, which automatically
makes them float to the top, depending on their importance.
...
...
@@ -200,7 +200,7 @@ We add the ~"Accepting merge requests" label to:
-
Low priority ~bug issues (i.e. we do not add it to the bugs that we want to
solve in the ~"Next Patch Release")
-
Small ~
"feature proposal"
-
Small ~
feature
-
Small ~"technical debt" issues
After adding the ~"Accepting merge requests" label, we try to estimate the
...
...
@@ -259,10 +259,10 @@ For feature proposals for EE, open an issue on the
[
issue tracker of EE
][
ee-tracker
]
.
In order to help track the feature proposals, we have created a
[
`feature
proposal`
][
fp
l
]
label. For the time being, users that are not members
[
`feature
`
][
f
l
]
label. For the time being, users that are not members
of the project cannot add labels. You can instead ask one of the [core team]
members to add the label ~
"feature proposal"
to the issue or add the following
code snippet right after your description in a new line:
`~
"feature proposal"
`
.
members to add the label ~
feature
to the issue or add the following
code snippet right after your description in a new line:
`~
feature
`
.
Please keep feature proposals as small and simple as possible, complex ones
might be edited to make them small and simple.
...
...
@@ -276,7 +276,7 @@ need to ask one of the [core team] members to add the label, if you do not have
If you want to create something yourself, consider opening an issue first to
discuss whether it is interesting to include this in GitLab.
[
f
pl
]:
https://gitlab.com/gitlab-org/gitlab-ce/issues?label_name=feature+proposal
[
f
l
]:
https://gitlab.com/gitlab-org/gitlab-ce/issues?label_name=feature
## Issue tracker guidelines
...
...
qa/qa/git/repository.rb
View file @
21a5744c
...
...
@@ -96,6 +96,10 @@ module QA
run
(
"git merge
#{
branch
}
"
)
end
def
merge
(
branch
)
run
(
"git merge
#{
branch
}
"
)
end
def
commits
run
(
'git log --oneline'
).
to_s
.
split
(
"
\n
"
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment