Skip to content

Commit

Permalink
Added GitHub Action to rebase release PRs to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Thesola10 committed Jan 30, 2024
1 parent 336ac50 commit 0c5d058
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/rebase-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#
# This workflow catches PRs made to 'release' and rebases them onto 'develop'
#

name: rebase-pr

on:
pull_request:
types: [opened]
branches:
- release

jobs:
rebase-pr:
name: Rebase pull request
runs-on: ubuntu-latest
steps:
- name: Perform rebase
uses: actions/github-script@v7
with:
script: |
github.rest.pulls.update({
pull_number = context.pull.number,
owner = context.repo.owner,
repo = context.repo.repo,
base = "develop"
});
github.rest.issues.createComment({
issue_number = context.pull.number,
owner = context.repo.owner,
repo = context.repo.repo,
body = "Thanks for your contribution! We don't accept pull requests to the `release` branch. I have rebased your pull request onto `develop`, check for any conflicts."
});

0 comments on commit 0c5d058

Please sign in to comment.