Merge pull request #8378 from kaovilai/skipTestsFor.md
Skip e2e, crd, go linters on .md checks.pull/8388/head
commit
a46fef8f2f
|
@ -5,7 +5,7 @@ on:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "site/**"
|
- "site/**"
|
||||||
- "design/**"
|
- "design/**"
|
||||||
|
- "**/*.md"
|
||||||
jobs:
|
jobs:
|
||||||
# Build the Velero CLI once for all Kubernetes versions, and cache it so the fan-out workers can get it.
|
# Build the Velero CLI once for all Kubernetes versions, and cache it so the fan-out workers can get it.
|
||||||
build-cli:
|
build-cli:
|
||||||
|
|
|
@ -6,6 +6,7 @@ on:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "site/**"
|
- "site/**"
|
||||||
- "design/**"
|
- "design/**"
|
||||||
|
- "**/*.md"
|
||||||
jobs:
|
jobs:
|
||||||
# Build the Velero CLI and image once for all Kubernetes versions, and cache it so the fan-out workers can get it.
|
# Build the Velero CLI and image once for all Kubernetes versions, and cache it so the fan-out workers can get it.
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
name: Pull Request Linter Check
|
name: Pull Request Linter Check
|
||||||
on: [pull_request]
|
on:
|
||||||
|
pull_request:
|
||||||
|
# Do not run when the change only includes these directories.
|
||||||
|
paths-ignore:
|
||||||
|
- "site/**"
|
||||||
|
- "design/**"
|
||||||
|
- "**/*.md"
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Run Linter Check
|
name: Run Linter Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue