Skip to content

Commit 4794d07

Browse files
authored
Merge branch 'main' into role-request
2 parents 92c0fac + b99c859 commit 4794d07

File tree

3 files changed

+28
-27
lines changed

3 files changed

+28
-27
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
/.github/settings.yml @detiber @displague @micahhausler
2-
/.github/CODEOWNERS @detiber @displague @micahhausler
1+
/.github/settings.yml @displague @micahhausler @chrisdoherty4
2+
/.github/CODEOWNERS @displague @micahhausler @chrisdoherty4

.github/settings.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
# See https://docs.github.com/en/rest/reference/repos#add-a-repository-collaborator for available options
33
collaborators:
44
# Maintainers, should also be added to the .github/CODEOWNERS file as owners of this settings.yml file.
5-
- username: detiber
6-
permission: maintain
75
- username: displague
86
permission: maintain
97
- username: micahhausler
108
permission: maintain
9+
- username: chrisdoherty4
10+
permission: maintain
1111
# Approvers
1212
- username: tstromberg
1313
permission: push
14-
- username: chrisdoherty4
14+
- username: detiber
1515
permission: push
1616
- username: abhinavmpandey08
1717
permission: push

.github/workflows/ci.yaml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,35 +14,36 @@ jobs:
1414
matrix:
1515
target: ["verify", "lint", "test"]
1616
steps:
17-
- name: checkout
18-
uses: actions/checkout@v3
19-
- uses: ./.github/actions/setup-go
20-
- uses: actions/cache@v3
21-
with:
22-
path: hack/tools/bin
23-
key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
24-
restore-keys: |
25-
${{ runner.os }}-tools-bin-${{ matrix.target }}-
26-
${{ runner.os }}-tools-bin-
27-
- uses: actions/cache@v3
28-
if: ${{ matrix.target == 'test' }}
29-
with:
30-
path: /tmp/kubebuilder-tools-*.tar.gz
31-
key: ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
32-
restore-keys: |
33-
${{ runner.os }}-tmp-${{ matrix.target }}-
34-
${{ runner.os }}-tmp-
35-
- name: ${{ matrix.target }}
36-
run: make ${{ matrix.target }}
17+
- name: checkout
18+
uses: actions/checkout@v3
19+
- uses: ./.github/actions/setup-go
20+
- uses: actions/cache@v3
21+
with:
22+
path: hack/tools/bin
23+
key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
24+
restore-keys: |
25+
${{ runner.os }}-tools-bin-${{ matrix.target }}-
26+
${{ runner.os }}-tools-bin-
27+
- uses: actions/cache@v3
28+
if: ${{ matrix.target == 'test' }}
29+
with:
30+
path: /tmp/kubebuilder-tools-*.tar.gz
31+
key: ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
32+
restore-keys: |
33+
${{ runner.os }}-tmp-${{ matrix.target }}-
34+
${{ runner.os }}-tmp-
35+
- name: ${{ matrix.target }}
36+
run: make ${{ matrix.target }}
3737
codespell:
3838
name: Codespell
3939
runs-on: ubuntu-latest
4040
steps:
4141
- name: Checkout Code
4242
uses: actions/checkout@v3
4343
- name: Codespell
44-
uses: codespell-project/actions-codespell@master
44+
uses: codespell-project/actions-codespell@v1.0
4545
with:
4646
check_filenames: true
4747
check_hidden: true
48-
skip: './.git,./go.mod,./go.sum'
48+
skip: "./.git,./go.mod,./go.sum"
49+
ignore_words_list: ro

0 commit comments

Comments
 (0)