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 4b27255 commit 9e616f7Copy full SHA for 9e616f7
.github/workflows/release.yml
@@ -11,11 +11,13 @@ jobs:
11
steps:
12
- name: Checkout Repository
13
uses: actions/checkout@v4
14
+ with:
15
+ fetch-depth: 2 # Ensure we have at least the last commit to compare
16
17
- name: Check Modified Files
18
id: check_changes
- run: |
- git fetch origin main
19
+ run: | # Ensure history exists for comparison
20
+ git fetch origin main --depth=2
21
CHANGED_FILES=$(git diff --name-only HEAD^ HEAD)
22
23
# Check if cli_monitor.py or tests/ directory has been changed
0 commit comments