mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-11-24 12:29:04 +08:00
Merge pull request #3325 from akhildevelops/ignore-paths-ci
Don't run github actions on ignored paths.
This commit is contained in:
commit
120a953976
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -7,6 +7,9 @@ name: CI
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "docs/**"
|
||||||
|
- "README.md"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
@ -14,6 +17,8 @@ on:
|
|||||||
- '*'
|
- '*'
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- ".github/**"
|
- ".github/**"
|
||||||
|
- "docs/**"
|
||||||
|
- "README.md"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# ensure_cargo_fmt:
|
# ensure_cargo_fmt:
|
||||||
|
5
.github/workflows/flutter-ci.yml
vendored
5
.github/workflows/flutter-ci.yml
vendored
@ -3,6 +3,9 @@ name: Full Flutter CI
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
paths-ignore:
|
||||||
|
- "docs/**"
|
||||||
|
- "README.md"
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
@ -10,6 +13,8 @@ on:
|
|||||||
- '*'
|
- '*'
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- ".github/**"
|
- ".github/**"
|
||||||
|
- "docs/**"
|
||||||
|
- "README.md"
|
||||||
|
|
||||||
env:
|
env:
|
||||||
LLVM_VERSION: "15.0.6"
|
LLVM_VERSION: "15.0.6"
|
||||||
|
Loading…
Reference in New Issue
Block a user