We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 466951d + 5f02dd1 commit 9b95bc4Copy full SHA for 9b95bc4
.github/workflows/main.yml
@@ -15,6 +15,12 @@ jobs:
15
while read commit; do
16
MSG=$(echo "$commit" | jq -r '.message')
17
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
24
COMMIT_TEXT="${COMMIT_TEXT}- [$MSG]($URL)
25
"
26
done < <(jq -c '.commits[]' < "${GITHUB_EVENT_PATH}")
@@ -34,3 +40,4 @@ jobs:
34
40
${{ steps.commits.outputs.commit_text }}
35
41
noprefix: true
36
42
nocontext: true
43
+ content: "<@&1411175159481634936>"
0 commit comments