generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add github no reply email detection (#88)
* chore: remove hardcoded token from tests * feat: add github no reply email detection * ci: compile latest changes
- Loading branch information
1 parent
36ae84b
commit 7d94908
Showing
4 changed files
with
174 additions
and
87 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
export const CONFIRMATION_MESSAGE = 'All good 🎉 feels good to give back!' | ||
export const CONFIRMATION_COMMENT = `Thank you for your contribution to WebdriverIO! Your pull request has been marked as an "Expensable" contribution. We've sent you an email with further instructions on how to claim your expenses from our development fund. Please make sure to check your spam folder as well. If you have any questions, feel free to reach out to us at [email protected]__ or in the contributing channel on [Discord](https://discord.webdriver.io). | ||
|
||
We are looking forward to more contributions from you in the future 🙌 | ||
const COMMENT_HEADER = `Thank you for your contribution to WebdriverIO! Your pull request has been marked as an "Expensable" contribution. | ||
We've sent you an email with further instructions on how to claim your expenses from our development fund.\n` | ||
|
||
const EMAIL_WARNING = `Please make sure to check your spam folder as well. If you have any questions, feel free to reach out to us at [email protected]__ or in the contributing channel on [Discord](https://discord.webdriver.io).\n\n` | ||
const EMAIL_WARNING_GHNOREPLY = `⚠️ You seemed to have committed using an email address ending up with \`@users.noreply.github.com\`, if you don't receive the email please feel free to reach out to us at [email protected]__ or in the contributing channel on [Discord](https://discord.webdriver.io).\n\n` | ||
|
||
const COMMENT_FOOTER = `We are looking forward to more contributions from you in the future 🙌 | ||
Have a nice day, | ||
The WebdriverIO Team 🤖` | ||
|
||
export const CONFIRMATION_COMMENT = | ||
COMMENT_HEADER + EMAIL_WARNING + COMMENT_FOOTER | ||
|
||
export const CONFIRMATION_COMMENT_GHNOREPLY = | ||
COMMENT_HEADER + EMAIL_WARNING_GHNOREPLY + COMMENT_FOOTER | ||
|
||
export const FROM = 'WebdriverIO Team <[email protected]>' | ||
export const BCC = '[email protected]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.