We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5334264 commit c1e3188Copy full SHA for c1e3188
.github/workflows/checks.yml
@@ -21,6 +21,8 @@ jobs:
21
run: sudo apt install -y fd-find
22
23
- uses: actions/checkout@v5
24
+ with:
25
+ fetch-depth: 0
26
27
- name: Check changelogs
28
run: ./scripts/ci/check-changelogs.sh
scripts/ci/check-changelogs.sh
@@ -6,7 +6,7 @@ set -eo pipefail
6
7
RESULT=0
8
9
-MERGE_BASE=$(git merge-base main HEAD)
+MERGE_BASE=$(git merge-base origin/main HEAD)
10
11
function check_project () {
12
project=$1
0 commit comments