Hi!
We have a workflow which runs for every commit. however, I would like to add some jobs for it, which will be executed only for PRs (all from our repository, no forks). Is it possible to create a such a filter
I couldn’t find anything in the documentation…
An example:
jobs:
- unit-tests
- pr-tests:
filters:
some-filter-for-prs-only
Thanks!