We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f2bbcda + 4369c65 commit 5d7497cCopy full SHA for 5d7497c
.github/workflows/build.yml
@@ -22,7 +22,10 @@ jobs:
22
- java: 17
23
sonar: false
24
name: Build
25
- if: github.repository == 'sixhours-team/memcached-spring-boot'
+ # Skip main build (JDK versions build) once the pull request is merged into master.
26
+ # Once PR is merged the release-snapshot action should handle the SNAPSHOT
27
+ # build and release, and publish the Sonar analysis.
28
+ if: github.repository == 'sixhours-team/memcached-spring-boot' && github.event.pull_request.merged == false
29
runs-on: ubuntu-latest
30
steps:
31
- uses: actions/checkout@v3
0 commit comments