forked from lvgl/lvgl
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.6 KB
/
Copy pathrelease_branch_updater.yml
File metadata and controls
46 lines (39 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Port repo release update
on:
schedule:
# Runs at 00:00 UTC on the 1st and 15th day of each month
- cron: '0 0 1,15 * *'
push:
branches:
- master
- 'release/v*' # on release branches
workflow_dispatch: # allow manual triggering
# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurrency
# Ensure that only one commit will be running tests at a time on each push
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
run-release-branch-updater:
if: github.repository == 'lvgl/lvgl'
runs-on: ubuntu-24.04
steps:
- name: Checkout LVGL
uses: actions/checkout@v6
with:
path: lvgl
fetch-depth: 0 # fetch all
- name: set git credentials
run: |
git config --global user.name 'lvgl-bot'
git config --global user.email 'lvgl-bot@users.noreply.github.com'
- name: run the script for release branches (not master)
if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch'
env:
GITHUB_TOKEN: ${{ secrets.PORT_RELEASER_GITHUB_TOKEN }}
run: python3 lvgl/scripts/release_branch_updater.py --oldest-major 9 --github-token "$GITHUB_TOKEN" --skip-master
- name: run the script for release branches and master
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
env:
GITHUB_TOKEN: ${{ secrets.PORT_RELEASER_GITHUB_TOKEN }}
run: python3 lvgl/scripts/release_branch_updater.py --oldest-major 9 --github-token "$GITHUB_TOKEN"