Skip to content

Commit 012f1b3

Browse files
committed
ci: run workflows only on major branches
1 parent 13f5129 commit 012f1b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: examples
22

33
on:
44
push:
5-
branches: ['**']
5+
branches: [main, beta]
66
pull_request:
77
branches: [main, beta]
88
schedule:

.github/workflows/test-win.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test-win
22

33
on:
44
push:
5-
branches: ['**']
5+
branches: [main, beta, test-win]
66
pull_request:
77
branches: [main, beta]
88
schedule:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
# Define all branches explicitly to not trigger actions on tag creation
66
# See: https://github.com/orgs/community/discussions/25615
7-
branches: ['**']
7+
branches: [main, beta]
88
pull_request:
99
branches: [main, beta]
1010
schedule:

0 commit comments

Comments
 (0)