Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
parent
1c5246c65e
commit
1325f8cf2d
6 changed files with 13 additions and 11 deletions
|
@ -44,7 +44,7 @@ docs-lint markdown:
|
|||
- .default-retry
|
||||
- .docs:rules:docs-lint
|
||||
# When updating the image version here, update it in /scripts/lint-doc.sh too.
|
||||
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-docs/lint-markdown:alpine-3.15-vale-2.16.1-markdownlint-0.31.1
|
||||
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-docs/lint-markdown:alpine-3.16-vale-2.17.0-markdownlint-0.31.1
|
||||
stage: lint
|
||||
needs: []
|
||||
script:
|
||||
|
@ -53,7 +53,7 @@ docs-lint markdown:
|
|||
docs-lint links:
|
||||
extends:
|
||||
- .docs:rules:docs-lint
|
||||
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-docs/lint-html:alpine-3.15-ruby-2.7.5-e6a8a48a
|
||||
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-docs/lint-html:alpine-3.16-ruby-2.7.6-0bc327a4
|
||||
stage: lint
|
||||
needs: []
|
||||
script:
|
||||
|
|
|
@ -57,9 +57,9 @@ export default {
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<div class="d-flex ide-commit-editor-header align-items-center">
|
||||
<file-icon :file-name="activeFile.name" :size="16" class="mr-2" />
|
||||
<strong class="mr-2">
|
||||
<div class="gl-display-flex ide-commit-editor-header gl-align-items-center">
|
||||
<file-icon :file-name="activeFile.name" :size="16" class="gl-mr-3" />
|
||||
<strong class="gl-mr-3">
|
||||
<template v-if="activeFile.prevPath && activeFile.prevPath !== activeFile.path">
|
||||
{{ activeFile.prevPath }} →
|
||||
</template>
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class UnlockDelayedProjectRemoval < Gitlab::Database::Migration[2.0]
|
||||
disable_ddl_transaction!
|
||||
|
||||
restrict_gitlab_migration gitlab_schema: :gitlab_main
|
||||
|
||||
class ApplicationSetting < MigrationRecord
|
||||
|
|
|
@ -15,6 +15,12 @@ Development guides that are specific to CI/CD are listed here:
|
|||
See the [CI/CD YAML reference documentation guide](cicd_reference_documentation_guide.md)
|
||||
to learn how to update the [reference page](../../ci/yaml/index.md).
|
||||
|
||||
## Examples of CI/CD usage
|
||||
|
||||
We maintain a [`ci-sample-projects`](https://gitlab.com/gitlab-org/ci-sample-projects) group, with projects that showcase
|
||||
examples of `.gitlab-ci.yml` for different use cases of GitLab CI/CD. They also cover specific syntax that could
|
||||
be used for different scenarios.
|
||||
|
||||
## CI Architecture overview
|
||||
|
||||
The following is a simplified diagram of the CI architecture. Some details are left out to focus on
|
||||
|
|
|
@ -7,7 +7,7 @@ disqus_identifier: 'https://docs.gitlab.com/ee/customization/branded_login_page.
|
|||
|
||||
# GitLab Appearance **(FREE SELF)**
|
||||
|
||||
There are several options for customizing the appearance of a self-managed instance
|
||||
Several options are available for customizing the appearance of a self-managed instance
|
||||
of GitLab. To access these settings:
|
||||
|
||||
1. On the top bar, select **Menu > Admin**.
|
||||
|
|
|
@ -3,9 +3,7 @@
|
|||
module QA
|
||||
RSpec.describe 'Create' do
|
||||
describe 'Open a fork in Web IDE',
|
||||
# TODO: remove limitation to only run on main when the test is fixed
|
||||
only: { pipeline: :main },
|
||||
quarantine: {
|
||||
skip: {
|
||||
issue: "https://gitlab.com/gitlab-org/gitlab/-/issues/351696",
|
||||
type: :flaky
|
||||
} do
|
||||
|
|
Loading…
Reference in a new issue