mirror of
https://github.com/C4illin/ConvertX.git
synced 2025-10-23 16:14:08 +00:00
chore: add maintain PR workflow
This commit adds a new workflow file, `.github/workflows/maintain-pr.yml`, which sets up a workflow to maintain release merge pull requests. The workflow is triggered on pushes to the `main` branch. It includes steps to check for an existing PR, create/update a PR if it doesn't exist, and reset the release branch if needed.
This commit is contained in:
40
.github/workflows/maintain-pr.yml
vendored
Normal file
40
.github/workflows/maintain-pr.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
name: Maintain Release Merge PR
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-release-pr:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Setup Git
|
||||||
|
run: |
|
||||||
|
git config user.name github-actions
|
||||||
|
git config user.email github-actions@github.com
|
||||||
|
- name: Check for existing PR
|
||||||
|
id: find-pr
|
||||||
|
uses: juliangruber/find-pull-request-action@v1
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
branch: release
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
if: steps.find-pr.outputs.number == ''
|
||||||
|
with:
|
||||||
|
ref: release
|
||||||
|
- name: Reset release branch
|
||||||
|
if: steps.find-pr.outputs.number == ''
|
||||||
|
run: |
|
||||||
|
git fetch origin main:main
|
||||||
|
git reset --hard main
|
||||||
|
- name: Create/Update PR
|
||||||
|
if: steps.find-pr.outputs.number == ''
|
||||||
|
uses: peter-evans/create-pull-request@v6
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
commit-message: Update release branch
|
||||||
|
title: Merge Release Auto-PR
|
||||||
|
body: Merging this PR will invoke release actions
|
||||||
|
branch: auto-update/release
|
Reference in New Issue
Block a user