Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run markdownlint when changing the linter #600

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions prow/manifests/overlays/metal3/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -346,7 +346,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -403,7 +403,7 @@ presubmits:
image: docker.io/golang:1.20
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -721,7 +721,7 @@ presubmits:
image: docker.io/golang:1.17
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -915,7 +915,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -948,7 +948,7 @@ presubmits:
requests:
memory: "500Mi"
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -978,7 +978,7 @@ presubmits:

metal3-io/metal3-docs:
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -1208,7 +1208,7 @@ presubmits:
image: docker.io/golang:1.17
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -1366,7 +1366,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -1396,7 +1396,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -1426,7 +1426,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -1456,7 +1456,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down Expand Up @@ -1486,7 +1486,7 @@ presubmits:
image: docker.io/koalaman/shellcheck-alpine:v0.9.0@sha256:e19ed93c22423970d56568e171b4512c9244fc75dd9114045016b4a0073ac4b7
imagePullPolicy: Always
- name: markdownlint
run_if_changed: '\.md$'
run_if_changed: '(\.md|markdownlint\.sh)$'
decorate: true
spec:
containers:
Expand Down
Loading