We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca3beb commit decfb7bCopy full SHA for decfb7b
1 file changed
.github/workflows/conventional-commits.yml
@@ -30,8 +30,8 @@ jobs:
30
# Get the base branch and the PR branch
31
BASE_BRANCH="${{ github.event.pull_request.base.ref }}"
32
33
- # Fetch the base branch and attach the ref
34
- git fetch origin "$BASE_BRANCH":"refs/remotes/origin/$BASE_BRANCH"
+ # Fetch the base branch with no verbosity
+ git fetch --quiet origin "$BASE_BRANCH"
35
36
# Get all commits in the PR (not the base branch ones)
37
# --pretty=format:"%s" gets only the commit message
0 commit comments