Skip to content

Commit 43e3805

Browse files
committed
Merge remote-tracking branch 'origin/main' into change-gui-message
2 parents e933434 + 74af9b9 commit 43e3805

File tree

3,480 files changed

+184196
-67625
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,480 files changed

+184196
-67625
lines changed

.asf.yaml

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,16 @@ github:
5050
rebase: false
5151

5252
collaborators:
53-
- acs-robot
5453
- gpordeus
55-
- hsato03
56-
- bernardodemarco
57-
- FelipeM525
58-
- lucas-a-martins
59-
- nicoschmdt
60-
- abh1sar
61-
- sudo87
62-
- rosi-shapeblue
54+
- erikbocks
55+
- Imvedansh
56+
- Damans227
57+
- DaanHoogland
6358

6459
protected_branches: ~
6560

6661
notifications:
67-
commits: commits@cloudstack.apache.org
68-
issues: commits@cloudstack.apache.org
62+
commits: commits@cloudstack.apache.org
63+
issues: commits@cloudstack.apache.org
6964
pullrequests: commits@cloudstack.apache.org
70-
discussions: users@cloudstack.apache.org
65+
discussions: users@cloudstack.apache.org

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.github/CODEOWNERS

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
/plugins/storage/volume/linstor @rp-
19+
/plugins/storage/volume/storpool @slavkap
20+
21+
.pre-commit-config.yaml @jbampton
22+
/.github/linters/ @jbampton
File renamed without changes.

.github/aw/imports/.gitattributes

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/aw/imports/github/gh-aw/94662b1dee8ce96c876ba9f33b3ab8be32de82a4/.github_workflows_shared_reporting.md

Lines changed: 73 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/dependabot.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
# To get started with Dependabot version updates, you'll need to specify which
19+
# package ecosystems to update and where the package manifests are located.
20+
# Please see the documentation for all configuration options:
21+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
22+
23+
version: 2
24+
updates:
25+
- package-ecosystem: "maven" # See documentation for possible values
26+
directory: "/" # Location of package manifests
27+
schedule:
28+
interval: "daily"
29+
cooldown:
30+
default-days: 7

.github/linters/.markdown-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
# MD001/heading-increment Heading levels should only increment by one level at a time
1919
MD001: false
2020

21-
# MD003/heading-style Heading style
22-
MD003: false
23-
2421
# MD004/ul-style Unordered list style
2522
MD004: false
2623

@@ -86,3 +83,6 @@ MD046: false
8683

8784
# MD052/reference-links-images Reference links and images should use a label that is defined
8885
MD052: false
86+
87+
# MD059/descriptive-link-text Link text should be descriptive
88+
MD059: false

.github/linters/.yamllint.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
---
18+
extends: default
19+
20+
rules:
21+
line-length:
22+
max: 400 # Very forgiving for GitHub Actions and infrastructure files
23+
indentation: disable # Disable indentation checking for existing files
24+
comments: disable # Disable comment formatting checks
25+
braces: disable
26+
brackets: disable # Disable bracket spacing checks
27+
colons:
28+
max-spaces-after: -1 # Allow any number of spaces after colon
29+
max-spaces-before: 0
30+
document-start: disable # Many files don't have ---
31+
truthy:
32+
allowed-values: ['true', 'false', 'on', 'off', 'yes', 'no']

0 commit comments

Comments
 (0)