Skip to content

Commit ff65924

Browse files
committed
ci: skip integration/build-test workflows on tag pushes
macos-integration-tests, flet-test and flet-build-test only need to run on branch/PR pushes; on release tag pushes they're redundant (and can fail). Add `tags-ignore: ['**']` to each push trigger so tags no longer fire them.
1 parent 9f07629 commit ff65924

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/flet-build-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: Flet Build Test
22

33
on:
44
push:
5+
tags-ignore:
6+
- '**'
57
branches-ignore:
68
- main
79
paths:

.github/workflows/flet-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ name: Flet Test (on-device)
88

99
on:
1010
push:
11+
tags-ignore:
12+
- '**'
1113
branches-ignore:
1214
- main
1315
paths:

.github/workflows/macos-integration-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: macOS Integration Tests
22

33
on:
44
push:
5+
tags-ignore:
6+
- '**'
57
branches-ignore:
68
- main
79
paths:

0 commit comments

Comments
 (0)