Skip to content

Commit

Permalink
run all jobs when ci-build.yaml is changed
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Gilgur <[email protected]>
  • Loading branch information
agilgur5 committed Oct 14, 2023
1 parent 3940d44 commit a51064c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
name: Get changed files
outputs:
# reference: https://github.com/tj-actions/changed-files#outputs-
all: ${{ steps.changed-files.outputs.all_any_modified == 'true' }}
tests: ${{ steps.changed-files.outputs.tests_any_modified == 'true' }}
e2e-tests: ${{ steps.changed-files.outputs.e2e-tests_any_modified == 'true' }}
codegen: ${{ steps.changed-files.outputs.codegen_any_modified == 'true' }}
Expand All @@ -37,9 +36,10 @@ jobs:
uses: tj-actions/changed-files@v39
with:
files_yaml: |
all:
common: &common
- .github/workflows/ci-build.yaml
tests: &tests
- *common
- cmd/**
- config/**
- errors/**
Expand All @@ -57,6 +57,7 @@ jobs:
- manifests/**
- sdks/**
codegen:
- *common
# generated files
- api/**
- docs/fields.md
Expand Down Expand Up @@ -100,6 +101,7 @@ jobs:
- .spelling
- mkdocs.yml
ui:
- *common
- ui/**
tests:
Expand Down

0 comments on commit a51064c

Please sign in to comment.