Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test PR, feel free to delete. #773

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.number,
owner: context.repo.owner,
repo: context.repo.repo,

base: "develop"
});
github.rest.issues.createComment({
issue_number: context.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."
});
Loading