Skip to content

Commit

Permalink
don't build on workflow changes to different workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
zerotacg committed Jun 13, 2024
1 parent 599e771 commit 1eb5a35
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: build client on multiple platforms
on:
push:
branches: [ "core4", "feature/*" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/build-client.yml'
pull_request:
branches: [ "core4" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/build-client.yml'

jobs:
build:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: build studio
on:
push:
branches: [ "core4", "feature/*" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/build-studio.yml'
pull_request:
branches: [ "core4" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/build-studio.yml'

jobs:
build:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: CMake on multiple platforms
on:
push:
branches: [ "core4", "feature/*" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/cmake-multi-platform.yml'
pull_request:
branches: [ "core4" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/cmake-multi-platform.yml'

jobs:
build:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/cross-compile-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,14 @@ name: build 32-Bit windows client
on:
push:
branches: [ "core4", "feature/*" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/cross-compile-client.yml'
pull_request:
branches: [ "core4" ]
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/cross-compile-client.yml'

jobs:
build:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: [ "core4" ]
tags:
- v*
paths-ignore:
- '.github/workflows/**.yml'
- '!.github/workflows/publish-docker-image.yml'

env:
ubuntu_version: 22.04
Expand Down

0 comments on commit 1eb5a35

Please sign in to comment.