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

Commit a16af68

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

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

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

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
push:
6+
branch: master
47

58
jobs:
69
continuous-integration:
@@ -28,6 +31,7 @@ jobs:
2831
name: continuous-integration/${{ matrix.env.container-runtime }}
2932
steps:
3033
- name: filter
34+
if: github.event_name == 'pull_request'
3135
uses: actions/bin/filter@master
3236
with:
3337
action: "opened|synchronize|reopened"

0 commit comments

Comments
 (0)