Skip to content

Commit

Permalink
[BUGFIX] Fix CI builds for PRs from forks (#360)
Browse files Browse the repository at this point in the history
It has turned out that having builds only for pushes (but not
pull requests) is not enough for triggering builds for PRs
from forks.

So we will need to live with pushes to non-PR branches other
than main not triggering a build, and having to create a
dummy draft PR for testing the CI build.

This reverts commit d1f02af.

Fixes #359
  • Loading branch information
oliverklee authored Jan 3, 2022
1 parent 07ff094 commit de5c407
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
name: CI with Composer scripts
on:
push:
branches:
- main
pull_request:
schedule:
- cron: '15 3 * * 1'
jobs:
Expand Down

0 comments on commit de5c407

Please sign in to comment.