File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1717
1818jobs :
1919 build_and_deploy_job :
20- if : github.actor != 'dependabot[bot]' && (github. event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') )
20+ if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed' && github.repository == github.event.pull_request.head.repo.full_name )
2121 runs-on : ubuntu-latest
2222 name : Build and Deploy Job
2323 steps :
5050 # ##### End of Repository/Build Configurations ######
5151
5252 close_pull_request_job :
53- if : github.event_name == 'pull_request' && github.event.action == 'closed'
53+ if : github.event_name == 'pull_request' && github.event.action == 'closed' && github.repository == github.event.pull_request.head.repo.full_name
5454 runs-on : ubuntu-latest
5555 name : Close Pull Request Job
5656 steps :
Original file line number Diff line number Diff line change 3535# List of jobs
3636jobs :
3737 chromatic-deployment :
38- if : github.repository_owner == 'Umbraco'
38+ if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.repository == github.event.pull_request.head.repo.full_name)
3939 # Operating System
4040 runs-on : ubuntu-latest
4141 # Job steps
You can’t perform that action at this time.
0 commit comments