Revert "disable job if dependabot"

This reverts commit 5740026c22.
This commit is contained in:
Jacob Overgaard
2022-08-16 14:18:09 +02:00
parent 5740026c22
commit 818555f335
2 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ on:
jobs:
build_and_deploy_job:
if: github.actor != 'dependabot' && github.repository_owner == 'Umbraco' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed'))
if: github.repository_owner == 'Umbraco' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed'))
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
@@ -34,7 +34,7 @@ jobs:
###### End of Repository/Build Configurations ######
close_pull_request_job:
if: github.actor != 'dependabot' && github.repository_owner == 'Umbraco' && github.event_name == 'pull_request' && github.event.action == 'closed'
if: github.repository_owner == 'Umbraco' && github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps:

View File

@@ -13,7 +13,7 @@ on:
jobs:
build_and_deploy_job:
if: github.actor != 'dependabot' && github.repository_owner == 'Umbraco' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed'))
if: github.repository_owner == 'Umbraco' && (github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed'))
runs-on: ubuntu-latest
name: Build and Deploy Job
steps:
@@ -35,7 +35,7 @@ jobs:
###### End of Repository/Build Configurations ######
close_pull_request_job:
if: github.actor != 'dependabot' && github.repository_owner == 'Umbraco' && github.event_name == 'pull_request' && github.event.action == 'closed'
if: github.repository_owner == 'Umbraco' && github.event_name == 'pull_request' && github.event.action == 'closed'
runs-on: ubuntu-latest
name: Close Pull Request Job
steps: