Upmerge docs to edge #22
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upmerge docs to edge | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Branch name (e.g. v0.32)' | |
required: true | |
default: '' | |
type: string | |
jobs: | |
upmerge: | |
name: Upmerge docs to edge | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_RAD_CI_BOT_PAT }} | |
ref: edge | |
# https://github.com/actions/checkout/issues/125#issuecomment-570254411 | |
fetch-depth: 0 | |
- 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) | |
echo "BRANCH_NAME=upmerge/$DATE-$RAND" >> $GITHUB_ENV | |
git checkout -b upmerge/$BRANCH_NAME | |
# - 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 }} | |
git diff origin/$SOURCE_BRANCH | |
echo "Upmerging docs from $SOURCE_BRANCH to edge" | |
git fetch origin $SOURCE_BRANCH | |
git merge --no-commit origin/$SOURCE_BRANCH | |
git commit -m "Upmerge to edge" | |
git push --set-upstream origin $BRANCH_NAME | |
- 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 $BRANCH_NAME |