Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/stackhpc-update-kolla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Update Kolla versions
on:
# Allow manual executions
workflow_dispatch:
# Run nightly
# Run weekly on Tuesday
schedule:
- cron: '0 0 * * *'
- cron: '0 0 * * 2'

jobs:
update-from-branch:
Expand All @@ -14,10 +14,13 @@ jobs:
matrix:
include:
- version: stackhpc/2023.1
codename: Antelope
- version: stackhpc/2024.1
codename: Caracal
uses: ./.github/workflows/update-dependencies.yml
with:
openstack_version: ${{ matrix.version }}
openstack_codename: ${{ matrix.codename }}
permissions:
contents: write
pull-requests: write
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
description: OpenStack version
type: string
required: true
openstack_codename:
description: OpenStack codename
type: string
required: true

jobs:
propose_github_release_updates:
Expand Down Expand Up @@ -73,10 +77,17 @@ jobs:
path: ${{ github.workspace }}/src/kayobe-config
commit-message: >-
Bump ${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}
author: stackhpc-ci <[email protected]>
branch: update-dependency/${{ matrix.key }}/${{ inputs.openstack_version }}
delete-branch: true
title: >-
Bump ${{ inputs.openstack_version }} ${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}
Bump ${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}
body: >
This PR was created automatically to update ${{ inputs.openstack_version }}
${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}.

GitHub Release Changelog:
https://github.com/stackhpc/${{ matrix.key }}/releases/tag/${{ steps.latest_tag.outputs.latest_tag }}
labels: |
stackhpc-ci
${{ inputs.openstack_codename }}
Loading