Merge pull request #8378 from kaovilai/skipTestsFor.md

Skip e2e, crd, go linters on .md checks.
pull/8388/head
Xun Jiang/Bruce Jiang 2024-11-08 14:44:33 +08:00 committed by GitHub
commit a46fef8f2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 3 deletions

View File

@ -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:

View File

@ -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:

View File

@ -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