Do not run lint & tests on unrelated file changes
These paths shouldn't trigger lint or test runs. Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
This commit is contained in:
parent
1d1b9083b3
commit
1b17d3b9e2
22
.github/workflows/lint.yml
vendored
22
.github/workflows/lint.yml
vendored
@ -3,8 +3,30 @@ name: Lint
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
everything:
|
everything:
|
||||||
|
22
.github/workflows/test-docs.yml
vendored
22
.github/workflows/test-docs.yml
vendored
@ -3,8 +3,30 @@ name: "Test Docs"
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docs:
|
docs:
|
||||||
|
24
.github/workflows/test-integration.yml
vendored
24
.github/workflows/test-integration.yml
vendored
@ -3,8 +3,32 @@ name: "Test Integration"
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
integration:
|
integration:
|
||||||
|
24
.github/workflows/test-unit.yml
vendored
24
.github/workflows/test-unit.yml
vendored
@ -3,8 +3,32 @@ name: "Test Unit"
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
unit:
|
unit:
|
||||||
|
24
.github/workflows/test-universe.yml
vendored
24
.github/workflows/test-universe.yml
vendored
@ -3,8 +3,32 @@ name: "Test Universe"
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
ignore-paths:
|
||||||
|
- 'docs/**'
|
||||||
|
- 'infra/**'
|
||||||
|
- 'website/**'
|
||||||
|
- '.gitignore'
|
||||||
|
- '.golangci.yml'
|
||||||
|
- '.goreleaser.yml'
|
||||||
|
- 'Dockerfile'
|
||||||
|
- 'README.md'
|
||||||
|
- 'install.ps1'
|
||||||
|
- 'semver'
|
||||||
|
- 'tracing.compose.yaml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
universe:
|
universe:
|
||||||
|
Reference in New Issue
Block a user