Skip to content

Commit

Permalink
ci: trigger for pull request pushes too
Browse files Browse the repository at this point in the history
Unfortunately the 'push' event doesn't trigger when a PR originates from
a fork. So trigger on the 'pull_request' event too.
  • Loading branch information
muggenhor committed Sep 5, 2023
1 parent cb357a8 commit 3cafd8b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI

on: [push]
on:
push:
pull_request:

jobs:
build_frozen:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/osx.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI

on: [push]
on:
push:
pull_request:

jobs:
build_frozen:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CI

on: [push]
on:
push:
pull_request:

jobs:
build_frozen:
Expand Down

0 comments on commit 3cafd8b

Please sign in to comment.