Skip to content

Commit 2dd1172

Browse files
authored
Exclude docs from CIs (flameshot-org#3935)
* exclude docs directory modifications from triggers of CIs * make Github Actions to be able to get trigerred manually
1 parent 2004959 commit 2dd1172

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

.github/workflows/Linux-pack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ on:
1616
- 'LICENSE'
1717
- 'docs/**'
1818

19+
workflow_dispatch:
20+
1921
env:
2022
PRODUCT: flameshot
2123
RELEASE: 1

.github/workflows/MacOS-pack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ on:
1616
- 'LICENSE'
1717
- 'docs/**'
1818

19+
workflow_dispatch:
20+
1921
env:
2022
PRODUCT: flameshot
2123

.github/workflows/build_cmake.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ on:
66
paths-ignore:
77
- 'README.md'
88
- 'LICENSE'
9+
- 'docs/**'
910
pull_request:
1011
branches: [ master ]
1112
paths-ignore:
1213
- 'README.md'
1314
- 'LICENSE'
15+
- 'docs/**'
16+
17+
workflow_dispatch:
1418

1519
env:
1620
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)

.github/workflows/clang-format.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
name: test-clang-format
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'README.md'
7+
- 'LICENSE'
8+
- 'docs/**'
9+
pull_request:
10+
paths-ignore:
11+
- 'README.md'
12+
- 'LICENSE'
13+
- 'docs/**'
14+
15+
workflow_dispatch:
416

517
jobs:
618
build:

0 commit comments

Comments
 (0)