Skip to content

BUG 2314404: controller/pvc: add checks for nil/empty pvc.Spec.StorageClassName #251

BUG 2314404: controller/pvc: add checks for nil/empty pvc.Spec.StorageClassName

BUG 2314404: controller/pvc: add checks for nil/empty pvc.Spec.StorageClassName #251

Workflow file for this run

---
# codespell is a GitHub Actions that runs codespell tool to catch misspell
# Reference https://github.com/codespell-project/actions-codespell
name: Codespell
# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- '*'
jobs:
codespell:
name: codespell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: codespell
uses: codespell-project/actions-codespell@master
with:
skip: .git,go.mod,go.sum,vendor
ignore_words_list: NotIn
check_filenames: true
check_hidden: true