forked from aws4embeddedlinux/meta-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (26 loc) · 994 Bytes
/
ff-merge.yml
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
name: ff-merge
on:
workflow_dispatch:
inputs:
branches:
description: 'branches/all to ff merge branch-next into (separate by blank only)'
default: 'master dunfell gatesgarth hardknott honister kirkstone zeus langdale mickledore nanbield scarthgap styhead'
required: true
jobs:
ff-merge:
runs-on: ubuntu-22.04
steps:
- name: clone, ff, push ${{ github.event.inputs.branches }}
shell: bash
run: |
git config --global user.name aws-iot-embedded-linux-ci
git config --global user.email [email protected]
for branch in ${{ github.event.inputs.branches }}; do
echo Doing ff-merge for: ${branch}
git clone ${{ github.server_url }}/${{ github.repository }} -b ${branch}
cd meta-aws
git merge --ff-only origin/${branch}-next
git push -u origin -b ${branch}
cd ..
rm -rf meta-aws
done