Tweak default merge message somewhat
What changed, and why it matters
This commit adds a template file that controls the default message shown when merging pull requests on a Forgejo code hosting instance. It only changes the formatting of merge commit messages and has no security relevance.
No action required; this is a cosmetic repository-configuration change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit creates .forgejo/default_merge_message/MERGE_TEMPLATE.md, a Forgejo-specific template for auto-generated merge commit messages. The template places the pull request title and reference on one line and the source/target branches on the next. It does not modify application code, build scripts, CI/CD logic, or any security-sensitive configuration.
Changed components
.forgejo/default_merge_message/MERGE_TEMPLATE.mdInspect captured patch +5 / −0
diff --git a/.forgejo/default_merge_message/MERGE_TEMPLATE.md b/.forgejo/default_merge_message/MERGE_TEMPLATE.md
new file mode 100644
index 0000000..669632f
--- /dev/null
+++ b/.forgejo/default_merge_message/MERGE_TEMPLATE.md
@@ -0,0 +1,5 @@
+Merge PR '${PullRequestTitle}' (${PullRequestReference})
+from ${HeadBranch} into ${BaseBranch}
+
+${ReviewedOn}
+${ReviewedBy}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.