remove conditions

This commit is contained in:
Jacob Overgaard
2022-11-09 14:14:08 +01:00
parent d09a377f8d
commit 9ea6fdef59
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ on:
jobs:
build_and_deploy_job:
if: github.repository_owner == 'Umbraco' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed'))
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:

View File

@@ -13,7 +13,7 @@ on:
jobs:
build_and_deploy_job:
if: github.repository_owner == 'Umbraco' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed'))
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
name: Build and Deploy Job
steps: