Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 7863b00

Browse files
don't run filter on non pull requests
1 parent 68cfac6 commit 7863b00

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

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

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

59
jobs:
610
continuous-integration:
@@ -28,6 +32,7 @@ jobs:
2832
name: continuous-integration/${{ matrix.env.container-runtime }}
2933
steps:
3034
- name: filter
35+
if: github.event_name == 'pull_request'
3136
uses: actions/bin/filter@master
3237
with:
3338
action: "opened|synchronize|reopened"

0 commit comments

Comments
 (0)