From 84e53439105db1854b8bd2d78a9c6cc62467866b Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Wed, 7 Oct 2020 17:38:04 -0700 Subject: [PATCH 1/3] remove all-contributors suggestion from merge notification --- .github/workflows/merged-notification.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/merged-notification.yml b/.github/workflows/merged-notification.yml index 5b38232b38d2..201783d5af28 100644 --- a/.github/workflows/merged-notification.yml +++ b/.github/workflows/merged-notification.yml @@ -13,11 +13,5 @@ jobs: github.issues.createComment({ ...context.repo, issue_number: context.payload.pull_request.number, - body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours. To add your ✨ contribution to the README.md, create a new comment in this PR with: - - \`\`\` - @all-contributors please add @${context.payload.pull_request.user.login} for docs - \`\`\` - - If you want to, you can use the [emoji key](https://allcontributors.org/docs/en/emoji-key) to replace docs with a different contribution type.` + body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours.` }) From b0567f2698b68c299a30f66b6c59d5b15d7de81f Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Thu, 8 Oct 2020 12:11:42 -0400 Subject: [PATCH 2/3] Add links to all-contributors --- .github/workflows/merged-notification.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/merged-notification.yml b/.github/workflows/merged-notification.yml index 201783d5af28..c4283e581b1c 100644 --- a/.github/workflows/merged-notification.yml +++ b/.github/workflows/merged-notification.yml @@ -13,5 +13,7 @@ jobs: github.issues.createComment({ ...context.repo, issue_number: context.payload.pull_request.number, - body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours.` + body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours. + + If you haven't already, you can add yourself to [the list of contributors](https://github.com/github/docs#contributors-) by following [these instructions](https://allcontributors.org/docs/en/bot/usage#commands). Thanks again! :sparkles:` }) From 2d338a760a9ce4fa4eaeee5e6e62785f1d9cf2e0 Mon Sep 17 00:00:00 2001 From: Jason Etcovitch Date: Thu, 8 Oct 2020 12:30:36 -0400 Subject: [PATCH 3/3] Update .github/workflows/merged-notification.yml Co-authored-by: Janice --- .github/workflows/merged-notification.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merged-notification.yml b/.github/workflows/merged-notification.yml index c4283e581b1c..2251541a639e 100644 --- a/.github/workflows/merged-notification.yml +++ b/.github/workflows/merged-notification.yml @@ -15,5 +15,5 @@ jobs: issue_number: context.payload.pull_request.number, body: `Thanks very much for contributing! Your pull request has been merged 🎉 You should see your changes appear on the site in approximately 24 hours. - If you haven't already, you can add yourself to [the list of contributors](https://github.com/github/docs#contributors-) by following [these instructions](https://allcontributors.org/docs/en/bot/usage#commands). Thanks again! :sparkles:` + If you haven't already, you can add yourself to [the list of contributors](https://github.com/github/docs#contributors-) by creating a new comment in this PR using [these instructions](https://allcontributors.org/docs/en/bot/usage#commands). Thanks again! :sparkles:` })