-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kolla dependency updates on non-default branches (#1552)
* Allow kolla tag updates on non-default branches * Fixup matrices * Reno * Include version in title
- Loading branch information
1 parent
e90aace
commit 88ade26
Showing
3 changed files
with
38 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Update Kolla versions | ||
|
||
on: | ||
# Allow manual executions | ||
workflow_dispatch: | ||
# Run nightly | ||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
update-from-branch: | ||
name: Update dependencies | ||
strategy: | ||
matrix: | ||
include: | ||
- version: stackhpc/2023.1 | ||
- version: stackhpc/2024.1 | ||
uses: ./.github/workflows/update-dependencies.yml | ||
with: | ||
openstack_version: ${{ matrix.version }} | ||
permissions: | ||
contents: write | ||
pull-requests: write |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
features: | ||
- | | ||
Allow Kolla dependency updates on non-default branches. |