mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
github: check commits against base branch
This commit is contained in:
parent
31a803c931
commit
5ea99578a8
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
@ -116,16 +116,16 @@ jobs:
|
||||
with:
|
||||
go-version: '${{ env.GO_VERSION }}'
|
||||
|
||||
- name: fetch and rebase on master
|
||||
- name: fetch and rebase on ${{ github.base_ref }}
|
||||
run: |
|
||||
git remote add upstream https://github.com/lightningnetwork/lnd
|
||||
git remote add upstream https://github.com/${{ github.repository }}
|
||||
git fetch upstream
|
||||
export GIT_COMMITTER_EMAIL="lnd-ci@example.com"
|
||||
export GIT_COMMITTER_NAME="LND CI"
|
||||
git rebase upstream/master
|
||||
git rebase upstream/${{ github.base_ref }}
|
||||
|
||||
- name: check commits
|
||||
run: scripts/check-each-commit.sh upstream/master
|
||||
run: scripts/check-each-commit.sh upstream/${{ github.base_ref }}
|
||||
|
||||
########################
|
||||
# lint code
|
||||
|
@ -195,6 +195,10 @@ certain large transactions](https://github.com/lightningnetwork/lnd/pull/7100).
|
||||
* [`golangci-lint` will now check new code using additional
|
||||
linters.](https://github.com/lightningnetwork/lnd/pull/7064)
|
||||
|
||||
* Update github actions to [check commits against the target base
|
||||
branch](https://github.com/lightningnetwork/lnd/pull/7103) rather than just
|
||||
using the master branch.
|
||||
|
||||
### Integration test
|
||||
|
||||
The `lntest` has been
|
||||
|
Loading…
Reference in New Issue
Block a user