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 17
17
18
18
jobs :
19
19
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 )
21
21
runs-on : ubuntu-latest
22
22
name : Build and Deploy Job
23
23
steps :
50
50
# ##### End of Repository/Build Configurations ######
51
51
52
52
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
54
54
runs-on : ubuntu-latest
55
55
name : Close Pull Request Job
56
56
steps :
Original file line number Diff line number Diff line change 35
35
# List of jobs
36
36
jobs :
37
37
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)
39
39
# Operating System
40
40
runs-on : ubuntu-latest
41
41
# Job steps
You can’t perform that action at this time.
0 commit comments