Skip to content

Commit

Permalink
Auto PR
Browse files Browse the repository at this point in the history
  • Loading branch information
beef9999 committed Oct 25, 2023
1 parent 90b6abe commit 2da6fdd
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/auto-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Auto PR

on:
push:
branches:
- 'release/*'

jobs:
auto-pr:
runs-on: ubuntu-latest

env:
GH_TOKEN: ${{ github.token }}

steps:
- uses: actions/checkout@v3

- name: Create Pull Request to the next higher release version

run: |
git fetch
RELEASE_VERSIONS=$(git branch -r | grep 'release/' | cut -d '/' -f 3 | sort -V)
CURRENT_VERSION=$(echo $GITHUB_REF | rev | cut -d '/' -f 1 | rev)
ME_AND_MY_NEXT=$(echo "$RELEASE_VERSIONS" | grep -w $CURRENT_VERSION -A 1)
NUM=$(echo "$ME_AND_MY_NEXT" | wc -l)
if (( NUM > 1 )); then
NEXT_VERSION=$(echo "$ME_AND_MY_NEXT" | tail -n 1)
set -x
gh pr create --base "release/$NEXT_VERSION" --head "release/$CURRENT_VERSION" \
--title "Auto PR from release/$CURRENT_VERSION to release/$NEXT_VERSION" \
--body 'Created by Github action'
else
echo "No more higher release versions, will merge to main"
set -x
gh pr create --base main --head "release/$CURRENT_VERSION" \
--title "Auto PR from release/$CURRENT_VERSION to main \
--body 'Created by Github action'
fi

0 comments on commit 2da6fdd

Please sign in to comment.