Skip to content

Commit c833f83

Browse files
authored
Prevent duplicate actions
1 parent 0e222fb commit c833f83

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: "Tests"
22

3-
on: ['push', 'pull_request']
3+
on:
4+
push:
5+
# Prevent duplicating jobs on PR-s from local branches
6+
branches:
7+
- "master"
8+
pull_request:
9+
schedule:
10+
- cron: "0 0 * * *"
411

512
env:
613
MIN_COVERED_MSI: 88

0 commit comments

Comments
 (0)