.github: make the rebase step re-usable

This commit is contained in:
Elle Mouton 2024-06-11 14:47:19 -04:00
parent 8b31a37ec9
commit 20be40df7b
No known key found for this signature in database
GPG Key ID: D7D916376026F177
2 changed files with 16 additions and 6 deletions

15
.github/actions/rebase/action.yml vendored Normal file
View 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 }}

View File

@ -103,12 +103,7 @@ jobs:
go-version: '${{ env.GO_VERSION }}'
- name: fetch and rebase on ${{ github.base_ref }}
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 }}
uses: ./.github/actions/rebase
- name: check commits
run: scripts/check-each-commit.sh upstream/${{ github.base_ref }}