Skip to content

Commit 26b7bb6

Browse files
committed
fix
1 parent a5c01ca commit 26b7bb6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,12 @@ jobs:
129129
steps:
130130
- name: Check out current commit
131131
uses: actions/checkout@v5
132-
with:
133-
ref: ${{ env.HEAD_COMMIT }}
132+
134133

135134
- name: Check if master is not ahead of develop
136135
run: |
137136
# Get commit counts: left=develop unique commits, right=master unique commits
138-
COUNTS=$(git rev-list --left-right --count origin/develop...origin/master)
137+
COUNTS=$(git rev-list --left-right --count develop...master)
139138
LEFT=$(echo "$COUNTS" | cut -f1)
140139
RIGHT=$(echo "$COUNTS" | cut -f2)
141140

0 commit comments

Comments
 (0)