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
2c2abf0b
Commit
2c2abf0b
authored
Jun 12, 2019
by
Rubén Dávila
Committed by
Mayra Cabrera
Jun 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport of gitlab-ee!13735
parent
1b42447e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb
...4128_add_last_ci_minutes_notification_at_to_namespaces.rb
+12
-0
db/schema.rb
db/schema.rb
+1
-0
doc/user/admin_area/settings/continuous_integration.md
doc/user/admin_area/settings/continuous_integration.md
+9
-1
No files found.
db/migrate/20190606014128_add_last_ci_minutes_notification_at_to_namespaces.rb
0 → 100644
View file @
2c2abf0b
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddLastCiMinutesNotificationAtToNamespaces
<
ActiveRecord
::
Migration
[
5.1
]
DOWNTIME
=
false
def
change
add_column
:namespaces
,
:last_ci_minutes_notification_at
,
:datetime_with_timezone
end
end
db/schema.rb
View file @
2c2abf0b
...
...
@@ -1440,6 +1440,7 @@ ActiveRecord::Schema.define(version: 20190611161641) do
t
.
string
"runners_token_encrypted"
t
.
integer
"project_creation_level"
t
.
boolean
"auto_devops_enabled"
t
.
datetime_with_timezone
"last_ci_minutes_notification_at"
t
.
index
[
"created_at"
],
name:
"index_namespaces_on_created_at"
,
using: :btree
t
.
index
[
"name"
,
"parent_id"
],
name:
"index_namespaces_on_name_and_parent_id"
,
unique:
true
,
using: :btree
t
.
index
[
"name"
],
name:
"index_namespaces_on_name_trigram"
,
using: :gin
,
opclasses:
{
"name"
=>
"gin_trgm_ops"
}
...
...
doc/user/admin_area/settings/continuous_integration.md
View file @
2c2abf0b
...
...
@@ -134,6 +134,14 @@ to a different Group.
be deducted from your Additional Minutes quota immediately after your purchase of additional
minutes.
## What happens when my CI minutes quota run out
When the CI minutes quota run out, an email is sent automatically to notifies the owner(s) of the group/namespace which
includes a link to
[
purchase more minutes
](
https://customers.gitlab.com/plans
)
.
If you are not the owner of the group, you will need to contact them to let them know they need to
[
purchase more minutes
](
https://customers.gitlab.com/plans
)
.
## Archive jobs **[CORE ONLY]**
Archiving jobs is useful for reducing the CI/CD footprint on the system by
...
...
@@ -160,4 +168,4 @@ questions that you know someone might ask.
Each scenario can be a third-level heading, e.g.
`### Getting error message X`
.
If you have none to add when creating a doc, leave this section in place
but commented out to help encourage others to add to it in the future. -->
\ No newline at end of file
but commented out to help encourage others to add to it in the future. -->
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