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
936ec5e5
Commit
936ec5e5
authored
Aug 08, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
d9bdbeeb
d2cff9e4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
30 deletions
+44
-30
app/assets/javascripts/vue_merge_request_widget/components/mr_widget_status_icon.vue
...merge_request_widget/components/mr_widget_status_icon.vue
+2
-2
app/assets/stylesheets/pages/merge_requests.scss
app/assets/stylesheets/pages/merge_requests.scss
+4
-0
changelogs/unreleased/62609-test-summary-loading-spinner-is-too-large.yml
...eased/62609-test-summary-loading-spinner-is-too-large.yml
+5
-0
doc/api/deploy_key_multiple_projects.md
doc/api/deploy_key_multiple_projects.md
+4
-28
doc/api/deploy_keys.md
doc/api/deploy_keys.md
+29
-0
No files found.
app/assets/javascripts/vue_merge_request_widget/components/mr_widget_status_icon.vue
View file @
936ec5e5
...
...
@@ -34,8 +34,8 @@ export default {
<
template
>
<div
class=
"d-flex align-self-start"
>
<div
class=
"square s24 h-auto d-flex-center append-right-default"
>
<div
v-if=
"isLoading"
class=
"mr-widget-icon"
>
<gl-loading-icon
size=
"
sm
"
/>
<div
v-if=
"isLoading"
class=
"mr-widget-icon
d-inline-flex
"
>
<gl-loading-icon
size=
"
md"
class=
"mr-loading-icon d-inline-flex
"
/>
</div>
<ci-icon
v-else
:status=
"statusObj"
:size=
"24"
/>
</div>
...
...
app/assets/stylesheets/pages/merge_requests.scss
View file @
936ec5e5
...
...
@@ -208,6 +208,10 @@
font-size
:
22px
;
}
.mr-loading-icon
{
margin
:
3px
0
;
}
.ci-status-icon
svg
{
margin
:
3px
0
;
position
:
relative
;
...
...
changelogs/unreleased/62609-test-summary-loading-spinner-is-too-large.yml
0 → 100644
View file @
936ec5e5
---
title
:
Adjust size and align MR-widget loading icon
merge_request
:
31503
author
:
type
:
fixed
doc/api/deploy_key_multiple_projects.md
View file @
936ec5e5
# Adding deploy keys to multiple projects via API
---
redirect_to
:
deploy_keys.md#adding-deploy-keys-to-multiple-projects
---
If you want to easily add the same deploy key to multiple projects in the same
group, this can be achieved quite easily with the API.
First, find the ID of the projects you're interested in, by either listing all
projects:
```
curl --header 'PRIVATE-TOKEN: <your_access_token>' https://gitlab.example.com/api/v4/projects
```
Or finding the ID of a group and then listing all projects in that group:
```
curl --header 'PRIVATE-TOKEN: <your_access_token>' https://gitlab.example.com/api/v4/groups
# For group 1234:
curl --header 'PRIVATE-TOKEN: <your_access_token>' https://gitlab.example.com/api/v4/groups/1234
```
With those IDs, add the same deploy key to all:
```
for project_id in 321 456 987; do
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --header "Content-Type: application/json" \
--data '{"title": "my key", "key": "ssh-rsa AAAA..."}' https://gitlab.example.com/api/v4/projects/${project_id}/deploy_keys
done
```
This document was moved to
[
another location
](
deploy_keys.md#adding-deploy-keys-to-multiple-projects
)
.
doc/api/deploy_keys.md
View file @
936ec5e5
...
...
@@ -203,3 +203,32 @@ Example response:
"created_at"
:
"2015-08-29T12:44:31.550Z"
}
```
## Adding deploy keys to multiple projects
If you want to easily add the same deploy key to multiple projects in the same
group, this can be achieved quite easily with the API.
First, find the ID of the projects you're interested in, by either listing all
projects:
```
curl --header 'PRIVATE-TOKEN: <your_access_token>' https://gitlab.example.com/api/v4/projects
```
Or finding the ID of a group and then listing all projects in that group:
```
curl --header 'PRIVATE-TOKEN: <your_access_token>' https://gitlab.example.com/api/v4/groups
# For group 1234:
curl --header 'PRIVATE-TOKEN: <your_access_token>' https://gitlab.example.com/api/v4/groups/1234
```
With those IDs, add the same deploy key to all:
```
for project_id in 321 456 987; do
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --header "Content-Type: application/json" \
--data '{"title": "my key", "key": "ssh-rsa AAAA..."}' https://gitlab.example.com/api/v4/projects/${project_id}/deploy_keys
done
```
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