mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Run Actions on patch branches (#2565)
This commit is contained in:
parent
57150fde6c
commit
27a4fa75d0
3 changed files with 5 additions and 0 deletions
1
.github/workflows/golangci-lint.yml
vendored
1
.github/workflows/golangci-lint.yml
vendored
|
|
@ -3,6 +3,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- patch-*
|
||||
pull_request:
|
||||
jobs:
|
||||
golangci:
|
||||
|
|
|
|||
1
.github/workflows/test-go.yaml
vendored
1
.github/workflows/test-go.yaml
vendored
|
|
@ -4,6 +4,7 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- patch-*
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.go'
|
||||
|
|
|
|||
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
|
|
@ -2,8 +2,11 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main
|
||||
- patch-*
|
||||
pull_request:
|
||||
|
||||
name: Run Tests
|
||||
|
||||
jobs:
|
||||
test-e2e:
|
||||
strategy:
|
||||
|
|
|
|||
Loading…
Reference in a new issue