ci: only run on pull request

* runs all scripts
* runs on the exact commit not the merge commit

Signed-off-by: Ramon Roche <mrpollo@gmail.com>
This commit is contained in:
Ramon Roche
2025-06-05 11:51:34 -07:00
parent fa4c77cb11
commit c1f23cf13d
+5 -11
View File
@@ -5,14 +5,10 @@ permissions:
on:
pull_request: {}
push:
branches:
- main
- 'release/**'
jobs:
metadata-check:
name: ${{ matrix.name }} metadata
name: ${{ matrix.name }}
runs-on: [runs-on,runner=2cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}",spot=true]
container:
image: ghcr.io/px4/px4-dev:v1.16.0-ondemand
@@ -22,8 +18,8 @@ jobs:
include:
- name: uORB Graphs
script: Tools/ci/metadata_uorb_graph.sh
# - name: Failsafe Web
# script: Tools/ci/metadata_failsafe_web.sh
- name: Failsafe Web
script: Tools/ci/metadata_failsafe_web.sh
- name: uORB Messages
script: Tools/ci/metadata_msg_docs.sh
- name: Parameter Reference
@@ -36,6 +32,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
persist-credentials: true
- name: Mark all directories safe for Git
@@ -43,7 +41,3 @@ jobs:
- name: Run ${{ matrix.name }} metadata check
run: ${{ matrix.script }} --test-only
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3