File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Update Kolla versions
3
3
on :
4
4
# Allow manual executions
5
5
workflow_dispatch :
6
- # Run nightly
6
+ # Run weekly on Tuesday
7
7
schedule :
8
- - cron : ' 0 0 * * * '
8
+ - cron : ' 0 0 * * 2 '
9
9
10
10
jobs :
11
11
update-from-branch :
@@ -14,10 +14,13 @@ jobs:
14
14
matrix :
15
15
include :
16
16
- version : stackhpc/2023.1
17
+ codename : Antelope
17
18
- version : stackhpc/2024.1
19
+ codename : Caracal
18
20
uses : ./.github/workflows/update-dependencies.yml
19
21
with :
20
22
openstack_version : ${{ matrix.version }}
23
+ openstack_codename : ${{ matrix.codename }}
21
24
permissions :
22
25
contents : write
23
26
pull-requests : write
Original file line number Diff line number Diff line change 7
7
description : OpenStack version
8
8
type : string
9
9
required : true
10
+ openstack_codename :
11
+ description : OpenStack codename
12
+ type : string
13
+ required : true
10
14
11
15
jobs :
12
16
propose_github_release_updates :
@@ -73,10 +77,17 @@ jobs:
73
77
path : ${{ github.workspace }}/src/kayobe-config
74
78
commit-message : >-
75
79
Bump ${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}
80
+ author :
stackhpc-ci <[email protected] >
76
81
branch : update-dependency/${{ matrix.key }}/${{ inputs.openstack_version }}
77
82
delete-branch : true
78
83
title : >-
79
- Bump ${{ inputs.openstack_version }} ${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}
84
+ Bump ${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}
80
85
body : >
81
86
This PR was created automatically to update ${{ inputs.openstack_version }}
82
87
${{ matrix.key }} to ${{ steps.latest_tag.outputs.latest_tag }}.
88
+
89
+ GitHub Release Changelog:
90
+ https://github.com/stackhpc/${{ matrix.key }}/releases/tag/${{ steps.latest_tag.outputs.latest_tag }}
91
+ labels : |
92
+ stackhpc-ci
93
+ ${{ inputs.openstack_codename }}
You can’t perform that action at this time.
0 commit comments