mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
reduce scope in which packaging and preview actions are run (#7429)
This commit is contained in:
parent
70514bf933
commit
715f320be1
3 changed files with 27 additions and 6 deletions
16
.github/workflows/fleetctl-preview-latest.yml
vendored
16
.github/workflows/fleetctl-preview-latest.yml
vendored
|
|
@ -9,13 +9,21 @@ on:
|
|||
- main
|
||||
- patch-*
|
||||
paths:
|
||||
# TODO: Reduce to cmd/fleetctl/**.go and packages used by it.
|
||||
- '**.go'
|
||||
- 'cmd/fleetctl/**.go'
|
||||
- 'pkg/**.go'
|
||||
- 'server/service/**.go'
|
||||
- 'server/context/**.go'
|
||||
- 'orbit/**.go'
|
||||
- 'ee/fleetctl/**.go'
|
||||
- 'docs/01-Using-Fleet/standard-query-library/standard-query-library.yml'
|
||||
pull_request:
|
||||
paths:
|
||||
# TODO: Reduce to cmd/fleetctl/**.go and packages used by it.
|
||||
- '**.go'
|
||||
- 'cmd/fleetctl/**.go'
|
||||
- 'pkg/**.go'
|
||||
- 'server/service/**.go'
|
||||
- 'server/context/**.go'
|
||||
- 'orbit/**.go'
|
||||
- 'ee/fleetctl/**.go'
|
||||
- 'docs/01-Using-Fleet/standard-query-library/standard-query-library.yml'
|
||||
workflow_dispatch: # Manual
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,12 @@ on:
|
|||
- patch-*
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'cmd/fleetctl/**.go'
|
||||
- 'pkg/**.go'
|
||||
- 'server/service/**.go'
|
||||
- 'server/context/**.go'
|
||||
- 'orbit/**.go'
|
||||
- 'ee/fleetctl/**.go'
|
||||
- 'tools/fleetctl-docker/**'
|
||||
- 'tools/wix-docker/**'
|
||||
- 'tools/bomutils-docker/**'
|
||||
|
|
|
|||
10
.github/workflows/test-packaging.yml
vendored
10
.github/workflows/test-packaging.yml
vendored
|
|
@ -12,7 +12,15 @@ on:
|
|||
- patch-*
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'cmd/fleetctl/**.go'
|
||||
- 'pkg/**.go'
|
||||
- 'server/service/**.go'
|
||||
- 'server/context/**.go'
|
||||
- 'orbit/**.go'
|
||||
- 'ee/fleetctl/**.go'
|
||||
- 'tools/fleetctl-docker/**'
|
||||
- 'tools/wix-docker/**'
|
||||
- 'tools/bomutils-docker/**'
|
||||
- '.github/workflows/test-packaging.yml'
|
||||
workflow_dispatch: # Manual
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue