Skip to content

Commit 75f4398

Browse files
authored
Only run CI on pushes to master and on all pull requests (#1670)
Fixes #1668
1 parent f81b1c6 commit 75f4398

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

.github/workflows/ARM.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
name: GitHub Actions
1+
name: Main (ARM)
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
6-
build-test-oracle:
10+
build-test-arm:
711
name: Build and Test ARM64
812
runs-on: [self-hosted, linux, ARM64]
913
timeout-minutes: 15

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
name: GitHub Actions
1+
name: Main (x64)
22

3-
on: [ pull_request, push ]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build-test:

0 commit comments

Comments
 (0)