mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-28 06:32:18 +02:00
.github: make the rebase step re-usable
This commit is contained in:
15
.github/actions/rebase/action.yml
vendored
Normal file
15
.github/actions/rebase/action.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: "Rebase on to the PR target base branch"
|
||||
description: "A reusable workflow that's used to rebase the PR code on to the target base branch."
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
|
||||
steps:
|
||||
- name: fetch and rebase on ${{ github.base_ref }}
|
||||
shell: bash
|
||||
run: |
|
||||
git remote add upstream https://github.com/${{ github.repository }}
|
||||
git fetch upstream ${{ github.base_ref }}:refs/remotes/upstream/${{ github.base_ref }}
|
||||
export GIT_COMMITTER_EMAIL="lnd-ci@example.com"
|
||||
export GIT_COMMITTER_NAME="LND CI"
|
||||
git rebase upstream/${{ github.base_ref }}
|
Reference in New Issue
Block a user