Skip to content

Commit f44c915

Browse files
Disable unnecessary actions
1 parent 6bde661 commit f44c915

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: Build
22

33
on:
4-
pull_request:
4+
push:
5+
branches:
6+
- master
57

68
concurrency:
79
group: ci-build-${{ github.ref }}-1

.github/workflows/spelling.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Check spelling
2-
on: [pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
36
jobs:
47
misspell:
58
name: Check spelling

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
name: "Test"
22

33
on:
4-
pull_request:
4+
push:
5+
branches:
6+
- master
57

68
concurrency:
79
group: ci-tests-${{ github.ref }}-1

0 commit comments

Comments
 (0)