Skip to content

Commit

Permalink
Cleanup gh action triggers
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Frank <[email protected]>
  • Loading branch information
ThoFrank committed Nov 26, 2024
1 parent a5942ea commit 3f7de35
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build S32k and posix platform

on: [push, pull_request]
on: [ merge_group, pull_request ]

jobs:
run-command:
Expand Down Expand Up @@ -45,4 +45,4 @@ jobs:

- name: Build for ${{ matrix.platform }}
if: steps.cache-cmake.outputs.cache-hit != 'true'
run: cmake --build cmake-build-${{ matrix.platform }} --target app.referenceApp -j
run: cmake --build cmake-build-${{ matrix.platform }} --target app.referenceApp -j
4 changes: 2 additions & 2 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Code Coverage Report

on: [workflow_call, push, pull_request]
on: [ merge_group, workflow_call, pull_request ]

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
Expand Down Expand Up @@ -64,4 +64,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: code_coverage
path: code_coverage.zip
path: code_coverage.zip
4 changes: 2 additions & 2 deletions .github/workflows/doxygen-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build and Deploy Doxygen Documentation
name: Build Doxygen Documentation

on: [workflow_call, pull_request]
on: [ merge_group, workflow_call, pull_request ]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-doc-build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build Sphinx Documentation

on: [workflow_call, pull_request]
on: [ merge_group, workflow_call, pull_request ]

permissions:
contents: write
Expand Down

0 comments on commit 3f7de35

Please sign in to comment.