File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 16
16
17
17
jobs :
18
18
build_and_deploy_job :
19
- if : github.repository_owner == 'Umbraco' && (github. event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') )
19
+ if : github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
20
20
runs-on : ubuntu-latest
21
21
name : Build and Deploy Job
22
22
steps :
41
41
# ##### End of Repository/Build Configurations ######
42
42
43
43
close_pull_request_job :
44
- if : github.repository_owner == 'Umbraco' && github. event_name == 'pull_request' && github.event.action == 'closed'
44
+ if : github.event_name == 'pull_request' && github.event.action == 'closed'
45
45
runs-on : ubuntu-latest
46
46
name : Close Pull Request Job
47
47
steps :
Original file line number Diff line number Diff line change 22
22
- ' main'
23
23
- ' v*/main'
24
24
- ' v*/release'
25
+ - ' v*/contrib'
25
26
26
27
# Allows you to run this workflow manually from the Actions tab
27
28
workflow_dispatch :
You can’t perform that action at this time.
0 commit comments