ci: do not run on PR pushes [ci skip]

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2025-09-24 14:53:21 +08:00
parent 05e9ecfceb
commit 3c849c8be6
No known key found for this signature in database
GPG Key ID: 6EE389C0F18AF774

View File

@ -2,7 +2,13 @@ name: docker-images
on: on:
push: push:
branches:
- master
- docker-test
pull_request: pull_request:
branches:
- master
- docker-test
workflow_dispatch: workflow_dispatch:
jobs: jobs:
@ -14,6 +20,7 @@ jobs:
- ubuntu-latest - ubuntu-latest
- ubuntu-24.04-arm - ubuntu-24.04-arm
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') }}
steps: steps:
- -
name: Checkout name: Checkout
@ -129,7 +136,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: needs:
- multi - multi
if: always() && github.event_name == 'push' if: always() && github.event_name == 'push' && !contains(github.event.head_commit.message, '[ci skip]')
steps: steps:
- -
name: Determine docker tag name: Determine docker tag