Skip to content

Commit 07d33e0

Browse files
test 7
1 parent 11e377d commit 07d33e0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ jobs:
5757

5858
- name: Run changelog update check
5959
run: |
60-
git diff --quiet origin/main -- exasol/toolbox/nox
61-
echo "status: $?"
60+
#git diff --quiet origin/main -- exasol/toolbox/nox
61+
#echo "status: $?"
6262
poetry run nox -s changelog:updated
6363
6464
build-matrix:

exasol/toolbox/nox/_documentation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def _build_multiversion_docs(session: nox.Session, config: Config) -> None:
4242
def _git_diff_changes_main() -> bool:
4343
"""return True if doc/changes is unchanged"""
4444
p = subprocess.run(
45-
["git", "diff", "--quiet", "main", "--", PROJECT_CONFIG.root / "doc/changes"],
46-
capture_output=True,
45+
["git", "diff", "--quiet", "origin/main", "--", PROJECT_CONFIG.root / "doc/changes"],
46+
#capture_output=True,
4747
)
4848
return p.returncode != 0
4949

0 commit comments

Comments
 (0)