Skip to content

Commit 9b95bc4

Browse files
committed
2 parents 466951d + 5f02dd1 commit 9b95bc4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ jobs:
1515
while read commit; do
1616
MSG=$(echo "$commit" | jq -r '.message')
1717
URL=$(echo "$commit" | jq -r '.url')
18+
19+
# Skip commits starting with "Merge branch"
20+
if [[ "$MSG" == Merge\ branch* ]]; then
21+
continue
22+
fi
23+
1824
COMMIT_TEXT="${COMMIT_TEXT}- [$MSG]($URL)
1925
"
2026
done < <(jq -c '.commits[]' < "${GITHUB_EVENT_PATH}")
@@ -34,3 +40,4 @@ jobs:
3440
${{ steps.commits.outputs.commit_text }}
3541
noprefix: true
3642
nocontext: true
43+
content: "<@&1411175159481634936>"

0 commit comments

Comments
 (0)