From d965d371332ccb02e048ffe234bc967a30fdeec2 Mon Sep 17 00:00:00 2001 From: Josh Parnham Date: Sun, 27 Mar 2022 23:53:06 +1100 Subject: [PATCH] Add text formatting example to README --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 02279730..c4e7bbc5 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,8 @@ jobs: ### Welcome a first-time contributor +You can format text in comments using the same [Markdown syntax](https://docs.github.com/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) as the GitHub web interface: + ```yaml on: pull_request @@ -180,7 +182,9 @@ jobs: issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: 'Welcome, new contributor!' + body: `**Welcome**, new contributor! + + Please make sure you're read our [contributing guide](CONTRIBUTING.md) and we look forward to reviewing your Pull request shortly ✨` }) ```