-
Notifications
You must be signed in to change notification settings - Fork 44
48 lines (46 loc) · 1.57 KB
/
upmerge.yaml
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
47
48
name: Upmerge samples to edge
on:
workflow_dispatch:
inputs:
version:
description: 'Branch name (e.g. v0.32)'
required: true
default: ''
type: string
jobs:
upmerge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GH_RAD_CI_BOT_PAT }}
ref: edge
- name: Configure git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Radius CI Bot"
- name: Create new branch
run: |
export DATE=$(date +%Y-%m-%d)
export RAND=$(openssl rand -hex 2)
git checkout -b upmerge/$DATE-$RAND
# - name: Upmerge docs
# run: |
# export SOURCE_BRANCH=$(basename ${{ github.ref }})
# echo "Upmerging samples from $SOURCE_BRANCH to edge"
# git fetch origin $SOURCE_BRANCH
# git merge --no-commit origin/$SOURCE_BRANCH
- name: Upmerge docs
run: |
export SOURCE_BRANCH=${{ inputs.version }}
echo "Upmerging samples from $SOURCE_BRANCH to edge"
git fetch origin $SOURCE_BRANCH
git merge --no-commit origin/$SOURCE_BRANCH
- name: Commit changes
run: |
git commit -m "Upmerge to edge"
git push --set-upstream origin upmerge/$DATE
- name: Create pull request
env:
GITHUB_TOKEN: ${{ secrets.GH_RAD_CI_BOT_PAT}}
run: gh pr create --title "Upmerge to edge" --body "Upmerge to edge" --base edge --head upmerge/$DATE