diff --git a/.github/workflows/cppcheck.yml b/.github/workflows/cppcheck.yml index ded543a..8d92a02 100644 --- a/.github/workflows/cppcheck.yml +++ b/.github/workflows/cppcheck.yml @@ -6,8 +6,12 @@ # Name of the action name: Cppcheck Check All Configuration -# Controls when the action will run. Triggers the workflow on each push request -on: push +# Controls when the action will run. Triggers the workflow on each push request to source directory +on: + push: + paths: + - '.github/workflows/**' + - 'ag-panel/**' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 5fcd8f4..2b94e04 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -6,8 +6,12 @@ # Name of the action name: Test Build All Configuration -# Controls when the action will run. Triggers the workflow on each push request -on: push +# Controls when the action will run. Triggers the workflow on each push request to workflow and source directories +on: + push: + paths: + - '.github/workflows/**' + - 'ag-panel/**' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 1f80c56..b74023f 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -6,8 +6,13 @@ # Name of the action name: Native Unit-Test Configuration -# Controls when the action will run. Triggers the workflow on each push request -on: push +# Controls when the action will run. Triggers the workflow on each push request to workflow, source and test directories +on: + push: + paths: + - '.github/workflows/**' + - 'ag-panel/**' + - 'test/**' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: