Skip to content

Commit

Permalink
Merge pull request #158 from igorbolic/skip-jdk-versions-build
Browse files Browse the repository at this point in the history
Skip JDK matrix build once the pull request is merged into master
  • Loading branch information
igorbolic authored Mar 30, 2023
2 parents f2bbcda + 4369c65 commit 5d7497c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
- java: 17
sonar: false
name: Build
if: github.repository == 'sixhours-team/memcached-spring-boot'
# Skip main build (JDK versions build) once the pull request is merged into master.
# Once PR is merged the release-snapshot action should handle the SNAPSHOT
# build and release, and publish the Sonar analysis.
if: github.repository == 'sixhours-team/memcached-spring-boot' && github.event.pull_request.merged == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 5d7497c

Please sign in to comment.