Skip to content

Commit d8d35a6

Browse files
chore: manual merge release to master
Manual conflict resolution whilst merging release/1.0 to master
2 parents d7af633 + 0527045 commit d8d35a6

File tree

292 files changed

+14762
-43437
lines changed

Some content is hidden

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

292 files changed

+14762
-43437
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Bug report
33
about: Create a report to help us improve
44
title: ''
55
labels: new
6-
assignees: jkryl
6+
assignees: GlennBullingham
77

88
---
99

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Feature request
33
about: Suggest an idea for this project
44
title: ''
55
labels: ''
6-
assignees: ''
6+
assignees: GlennBullingham
77

88
---
99

.github/auto_assign.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ addAssignees: false
77
# A list of reviewers to be added to pull requests (GitHub user name)
88
reviewers:
99
- blaisedias
10+
- chriswldenyer
1011
- cjones1024
11-
- jonathan-teh
12-
- jkryl
1312
- gila
13+
- jonathan-teh
1414
- paulyoong
15-
- chriswldenyer
1615
- tiagolobocastro
16+
- mtzaurus
1717

1818
# A list of keywords to be skipped the process that add reviewers if pull requests include it
1919
skipKeywords:

.github/workflows/pr-commitlint.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,3 @@ jobs:
1717
first_commit=$(curl ${{ github.event.pull_request.commits_url }} 2>/dev/null | jq '.[0].sha' | sed 's/"//g')
1818
last_commit=HEAD^2 # don't lint the merge commit
1919
npx commitlint --from $first_commit~1 --to $last_commit -V
20-
- name: Lint Pull Request
21-
env:
22-
TITLE: ${{ github.event.pull_request.title }}
23-
BODY: ${{ github.event.pull_request.body }}
24-
run: export NL=; printenv TITLE NL BODY | npx commitlint -V

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,9 @@ artifacts/
1818
**/__pycache__
1919
/chart/charts/
2020
ansible-hosts
21+
/test/python/csi_pb2.py
22+
/test/python/csi_pb2_grpc.py
23+
/test/python/mayastor_pb2.py
24+
/test/python/mayastor_pb2_grpc.py
25+
/test/python/venv/*
26+
/package.json

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "rpc/mayastor-api"]
2+
path = rpc/mayastor-api
3+
url = https://github.com/openebs/mayastor-api

.pre-commit-config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,10 @@ repos:
3737
entry: bash -c "npm install @commitlint/config-conventional @commitlint/cli; cat $1 | npx commitlint"
3838
args: [$1]
3939
stages: [commit-msg]
40+
- id: python-check
41+
name: python lint
42+
entry: black
43+
description: runs black against the python code
44+
pass_filenames: true
45+
types: [file, python]
46+
language: system

0 commit comments

Comments
 (0)