Skip to content

Commit 7246220

Browse files
committed
Update build.yml to refine push and pull_request triggers
1 parent fe556bb commit 7246220

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ updates:
66
schedule:
77
interval: "daily"
88
time: "22:40"
9+
target-branch: "main"
910
open-pull-requests-limit: 1
1011
versioning-strategy: "increase"
1112
allow:

.github/workflows/build.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
name: Flet Build
22

33
on:
4-
push:
54
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
- dev
9+
paths-ignore:
10+
- '.github/dependabot.yml'
11+
- 'LICENSE'
12+
- 'README.md'
613
pull_request:
14+
paths-ignore:
15+
- '.github/dependabot.yml'
16+
- 'LICENSE'
17+
- 'README.md'
718

819
env:
920
UV_PYTHON: 3.12

0 commit comments

Comments
 (0)