Skip to content

Commit

Permalink
workflow names refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Blef666 committed Feb 19, 2025
1 parent bd8e0bf commit 1a4cf9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: ['**']
tags: [v*]
jobs:
build-scala:
build:
uses: softwaremill/github-actions-workflows/.github/workflows/build-scala.yml@main
# run on 1) push, 2) external PRs, 3) softwaremill-ci PRs
# do not run on internal, non-steward PRs since those will be run by push to branch
Expand All @@ -30,9 +30,9 @@ jobs:
with:
java-opts: "-Xmx4G"

publish-release:
publish:
uses: softwaremill/github-actions-workflows/.github/workflows/publish-release.yml@main
needs: [build-scala]
needs: [build]
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
secrets: inherit
with:
Expand All @@ -47,5 +47,5 @@ jobs:
auto-merge:
# only for PRs by softwaremill-ci
if: github.event.pull_request.user.login == 'softwaremill-ci'
needs: [ build-scala, mima, label ]
needs: [ build, mima, label ]
uses: softwaremill/github-actions-workflows/.github/workflows/auto-merge.yml@main

0 comments on commit 1a4cf9a

Please sign in to comment.