|
|
|
|
|
|
|
|
|
|
|
name: Merge main into PRs
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
Merge:
|
|
if: github.repository == 'ultralytics/yolov5'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.x"
|
|
cache: "pip"
|
|
- name: Install requirements
|
|
run: |
|
|
pip install pygithub
|
|
- name: Merge default branch into PRs
|
|
shell: python
|
|
run: |
|
|
from github import Github
|
|
import os
|
|
|
|
g = Github(os.getenv('GITHUB_TOKEN'))
|
|
repo = g.get_repo(os.getenv('GITHUB_REPOSITORY'))
|
|
|
|
|
|
default_branch_name = repo.default_branch
|
|
default_branch = repo.get_branch(default_branch_name)
|
|
|
|
for pr in repo.get_pulls(state='open', sort='created'):
|
|
try:
|
|
|
|
base_repo_name = repo.full_name
|
|
head_repo_name = pr.head.repo.full_name
|
|
base_branch_name = pr.base.ref
|
|
head_branch_name = pr.head.ref
|
|
|
|
|
|
comparison = repo.compare(default_branch.commit.sha, pr.head.sha)
|
|
|
|
if comparison.behind_by > 0:
|
|
print(f"β οΈ PR
|
|
|
|
|
|
try:
|
|
success = pr.update_branch()
|
|
assert success, "Branch update failed"
|
|
print(f"β
Successfully merged '{default_branch_name}' into PR
|
|
except Exception as update_error:
|
|
print(f"β Could not update PR
|
|
print(" This might be due to branch protection rules or insufficient permissions.")
|
|
else:
|
|
print(f"β
PR
|
|
except Exception as e:
|
|
print(f"β Could not process PR
|
|
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets._GITHUB_TOKEN }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
|