How to skip steps or jobs in GitHub Actions for PRs from forks
on:
push:
branches: [ main, dev, 'feature/*', 'rel/*' ]
pull_request:
types: [opened, synchronize, reopened] push:
name: push nuget.ci
runs-on: ubuntu-latest
needs: [build, acceptance]
if: ${{ !github.event.pull_request.head.repo.fork }}
steps:Last updated