Skip to content

Commit 9451e4e

Browse files
authored
feat: fix duplicate CI checks in pull requests (#88)
1 parent 6516da9 commit 9451e4e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build
22

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

59
env:
610
SHA: ${{ GITHUB.SHA }}

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: Release
22

3-
on: push
3+
on:
4+
push:
5+
branches:
6+
- master
47

58
env:
69
SHA: ${{ GITHUB.SHA }}

0 commit comments

Comments
 (0)