Skip to content

Commit

Permalink
feat : updated pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
PWS-TE committed Jan 20, 2025
1 parent 51d3650 commit 28346e2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
name: "PMD Scan"
runs-on: ubuntu-latest
if: >
github.event_name == 'pull_request' &&
github.event_name == 'pull_request' &&
github.event_name != 'schedule' &&
!contains(github.event.head_commit.message, '[skip pmd]') &&
!contains(github.event.head_commit.message, '[skip tests]')
Expand All @@ -123,7 +123,7 @@ jobs:
needs:
- pre_commit
if: >
(github.event_name == 'push' || github.actor == 'dependabot[bot]') &&
(github.event_name == 'push' || github.actor == 'dependabot[bot]') &&
github.event_name != 'schedule' &&
!contains(github.event.head_commit.message, '[skip tests]') &&
!contains(github.event.head_commit.message, '[skip build]')
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
needs:
- pre_commit
if: >
(github.event_name == 'push' || github.actor == 'dependabot[bot]') &&
(github.event_name == 'push' || github.actor == 'dependabot[bot]') &&
github.event_name != 'schedule' &&
!contains(github.event.head_commit.message, '[skip tests]') &&
!contains(github.event.head_commit.message, '[skip build]')
Expand All @@ -178,7 +178,7 @@ jobs:
needs:
- pre_commit
if: >
(github.event_name == 'push' || github.actor == 'dependabot[bot]') &&
(github.event_name == 'push' || github.actor == 'dependabot[bot]') &&
github.event_name != 'schedule' &&
!contains(github.event.head_commit.message, '[skip build]') &&
!contains(github.event.head_commit.message, '[skip tests]') &&
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
if: >
needs.pre_commit.outputs.java_version_supported_by_repo != needs.pre_commit.outputs.java_version &&
github.event_name != 'pull_request' &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
github.event_name != 'schedule' &&
!contains(github.event.head_commit.message, '[skip build]') &&
!contains(github.event.head_commit.message, '[skip tests]') &&
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
- run_e2e_test
if: >
github.event_name == 'push' &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
github.event_name != 'schedule' &&
!(failure() || cancelled()) &&
!contains(github.event.head_commit.message, '[skip build]')
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
if: >
!(failure() || cancelled()) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
github.event_name != 'pull_request' &&
github.event_name != 'pull_request' &&
github.event_name != 'schedule' &&
!contains(github.event.head_commit.message, '[skip build]')
steps:
Expand All @@ -325,7 +325,7 @@ jobs:
- run_e2e_test
if: >
!(failure() || cancelled()) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
github.event_name != 'schedule' &&
github.event_name != 'pull_request' &&
contains(github.event.head_commit.message, '[release]')
Expand Down Expand Up @@ -372,7 +372,7 @@ jobs:
- run_e2e_test
if: >
!(failure() || cancelled()) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
github.event_name != 'schedule' &&
github.event_name != 'pull_request' &&
contains(github.event.head_commit.message, '[release]')
Expand Down Expand Up @@ -407,7 +407,7 @@ jobs:
- push_docker_images
if: >
!(failure() || cancelled()) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
(github.ref_name == 'master' || startsWith(github.ref_name, 'release/')) &&
github.event_name != 'schedule' &&
github.event_name != 'pull_request' &&
contains(github.event.head_commit.message, '[release]')
Expand Down

0 comments on commit 28346e2

Please sign in to comment.