Conversation
|
I'd still like to be able to run the CI on feature branches in my fork, before opening PRs. Can we configure it to still allow that? |
|
@hugovk i think that would be enabled on the fork right? or do i need to add a workflow_dispatch for ci.yml? |
|
Well, first of all the fork owner has to click a button to enable the CI on forks. This is a one-time thing, and they can disable later if they want. But we also need to make sure the YAML config in the repo doesn't prohibit it from running. I suggest we keep And then add this for each job: jobs:
test:
if: github.event_name != 'push' || github.event.repository.fork == trueSo these will trigger:
|
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
hugovk
left a comment
There was a problem hiding this comment.
Looks good! Will also confirm after merge :)
|
Looking good on my side 👍 |
Description
before:

after:
