-
I’ve got a continuous integration workflow which is quite heavy, with multiplatform testing.
I currently enabled How can I disable it in such case? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
-
I suppose you could also restrict |
Beta Was this translation helpful? Give feedback.
on: pull_request
to branches with a colon in them (typically just the case with PRs from forked repos)How to trigger an action on push or pull request but not both?
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository != github.event.pull_request.head.repo.full_name)
Is there a way to tell if a PR is from a forked repository?