Skip to content

Commit 4c4d4dc

Browse files
authored
Merge branch 'main' into fix-unit-test-data-race
2 parents 41668db + 1e655f4 commit 4c4d4dc

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/mergify.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
pull_request_rules:
2+
- name: automatic merge after review
3+
conditions:
4+
- check-success=continuous-integration/drone/pr
5+
- check-success=DCO
6+
- check-success=CodeFactor
7+
- check-success=codespell
8+
- "#approved-reviews-by>=2"
9+
- approved-reviews-by=@longhorn/maintainer
10+
actions:
11+
merge:
12+
method: rebase
13+
14+
- name: ask to resolve conflict
15+
conditions:
16+
- conflict
17+
actions:
18+
comment:
19+
message: This pull request is now in conflict. Could you fix it @{{author}}? 🙏

.github/workflows/codespell.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Codespell
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- main
8+
- "v*.*.*"
9+
10+
jobs:
11+
codespell:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 1
18+
- name: Check code spell
19+
uses: codespell-project/actions-codespell@v2
20+
with:
21+
check_filenames: true
22+
skip: "*/**.yaml,*/**.yml,./scripts,./vendor,MAINTAINERS,LICENSE,go.mod,go.sum"

0 commit comments

Comments
 (0)