mirror of
https://github.com/tuna/mirror-web.git
synced 2025-12-25 20:32:46 +00:00
ci: do not run on PR pushes [ci skip]
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
parent
05e9ecfceb
commit
3c849c8be6
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue