Merge pull request #27 from ngraveio/release-pipeline #1
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: Sync main with release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-main-branch: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Create PR from release to main | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
# Check if a pull request already exists from release to main | |
pr_url=$(gh pr list --head release --base main --json url --jq '.[0].url') | |
if [ -n "$pr_url" ]; then | |
echo "PR already exists: $pr_url" | |
else | |
pr_url=$(gh pr create \ | |
--head release \ | |
--base main \ | |
--title "[skip ci][skip release] Sync main with the release branch" \ | |
--body "Auto-created pull request to merge changes from release into main." | |
) | |
echo "Created PR: $pr_url" | |
fi | |
# Attempt to merge the pull request (Fails, investigate later) | |
# gh pr merge "$pr_url" --merge --auto |