kubernetesbare-metalk8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
on:
|
|
workflow_call:
|
|
inputs:
|
|
branch:
|
|
description: Which branch to update with new patch versions
|
|
default: master
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
update-patch-versions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
with:
|
|
ref: ${{ inputs.branch }}
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.13'
|
|
cache: 'pip'
|
|
- run: pip install scripts/component_hash_update pre-commit
|
|
- run: update-hashes
|
|
env:
|
|
API_KEY: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: actions/cache@v4
|
|
with:
|
|
key: pre-commit-hook-propagate
|
|
path: |
|
|
~/.cache/pre-commit
|
|
- run: pre-commit run --all-files propagate-ansible-variables
|
|
continue-on-error: true
|
|
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
|
|
with:
|
|
commit-message: Patch versions updates
|
|
title: Patch versions updates - ${{ inputs.branch }}
|
|
labels: bot
|
|
branch: component_hash_update/${{ inputs.branch }}
|
|
sign-commits: true
|
|
body: |
|
|
/kind feature
|
|
|
|
```release-note
|
|
NONE
|
|
```
|