Skip to content

Commit

Permalink
Merge branch 'master' into BOB-31045-update_aws_sdk_and_cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Rampton committed Apr 6, 2023
2 parents 9bb6e97 + 02f05d4 commit 623d8b7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/bump_dependencies.yml
Expand Up @@ -6,14 +6,26 @@ on:

jobs:
bump-dependencies:
if: startsWith(github.repository, 'spinnaker/')
runs-on: ubuntu-latest
steps:
# Halyard releases are separate from Spinnaker releases so we need to
# exclude Halyard from bump deps when targeting services release-* branches.
- name: decide bumpdep target repositories
id: bumpdep_targets
run: |
REPOS=clouddriver,echo,fiat,front50,gate,igor,keel,orca,rosco,swabbie
if [ "${{ github.event.client_payload.branch }}" == " origin/master" ]; then
echo "on master branch, include halyard in bumpdeps target list"
REPOS+=",halyard"
fi
echo REPOS=$(echo -e "${REPOS}") >> $GITHUB_OUTPUT
- uses: spinnaker/bumpdeps@master
with:
ref: ${{ github.event.client_payload.ref }}
baseBranch: ${{ github.event.client_payload.branch }}
key: korkVersion
repositories: clouddriver,echo,fiat,front50,gate,halyard,igor,keel,orca,rosco,swabbie
repositories: ${{ steps.bumpdep_targets.outputs.REPOS }}
mavenRepositoryUrl: https://repo.maven.apache.org/maven2
groupId: io.spinnaker.kork
artifactId: kork-bom
Expand Down

0 comments on commit 623d8b7

Please sign in to comment.