Skip to content

Commit 9389728

Browse files
committed
gha: only run on pushes to master
Otherwise on `pull_request` it is
1 parent 6cbdbc4 commit 9389728

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/analysis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Code Analysis
33
on:
44
pull_request:
55
push:
6+
branches:
7+
- master
68
schedule:
79
# Run Monday morning at 3 o'clock
810
# ┌───────────── minute (0 - 59)

.github/workflows/integration_tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Integration tests
33
on:
44
pull_request:
55
push:
6+
branches:
7+
- master
68
schedule:
79
# Run Monday morning at 3 o'clock
810
# ┌───────────── minute (0 - 59)

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Tests
33
on:
44
pull_request:
55
push:
6+
branches:
7+
- master
68
schedule:
79
# Run Monday morning at 3 o'clock
810
# ┌───────────── minute (0 - 59)

0 commit comments

Comments
 (0)