ci: add port release updater (#7590)
This commit is contained in:
27
.github/workflows/release_branch_updater.yml
vendored
Normal file
27
.github/workflows/release_branch_updater.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Port repo release update
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'release/v*' # on release branches
|
||||
workflow_dispatch: # allow manual triggering
|
||||
|
||||
jobs:
|
||||
run-release-branch-updater:
|
||||
if: github.repository == 'lvgl/lvgl'
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
steps:
|
||||
- name: Checkout LVGL
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
path: lvgl
|
||||
fetch-depth: 0 # fetch all
|
||||
|
||||
- name: set git credentials
|
||||
run: |
|
||||
git config user.name 'lvgl-bot'
|
||||
git config user.email 'lvgl-bot@users.noreply.github.com'
|
||||
|
||||
- name: run the script
|
||||
run: python3 lvgl/scripts/release_branch_updater.py --oldest-major 9
|
||||
Reference in New Issue
Block a user