Skip to content

Commit decfb7b

Browse files
committed
fix: make fetch simplier and remove verbosity
1 parent 7ca3beb commit decfb7b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/conventional-commits.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
# Get the base branch and the PR branch
3131
BASE_BRANCH="${{ github.event.pull_request.base.ref }}"
3232
33-
# Fetch the base branch and attach the ref
34-
git fetch origin "$BASE_BRANCH":"refs/remotes/origin/$BASE_BRANCH"
33+
# Fetch the base branch with no verbosity
34+
git fetch --quiet origin "$BASE_BRANCH"
3535
3636
# Get all commits in the PR (not the base branch ones)
3737
# --pretty=format:"%s" gets only the commit message

0 commit comments

Comments
 (0)