-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(ci): repoint push-email-notify to smtp-notify-action #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🔵 Trivial
🔎 Supported by static analysis
🌐 Web query:
hyperpolymath smtp-notify-action v0.2.0 action.yml secure SMTP_PORT STARTTLS💡 Result:
The organization Hyperpolymath utilizes a standard, dormant push-email notification workflow across its repositories, which is configured via a GitHub Actions file typically named
.github/workflows/push-email-notify.yml[1][2][3][4]. This workflow uses the third-party actiondawidd6/action-send-mailrather than a customsmtp-notify-action[1][2][3][4]. In the configuration provided in these repositories, thesecureparameter is explicitly set totrue[1][2][3][4]. Regarding your technical configuration query: - SMTP_PORT: This value is retrieved from GitHub Secrets (${{ secrets.SMTP_PORT }}) [1][2][3][4]. Common SMTP ports used forSTARTTLSare typically 587, while 465 is often used for implicit TLS (SMTPS) [5][6][7]. - STARTTLS vs. Secure: In the context ofdawidd6/action-send-mailand similar tools, settingsecure: trueoften indicates that the connection should use TLS/SSL [1][8][7]. Whether this impliesSTARTTLSor implicit TLS depends on the specific action's internal implementation and the port chosen; typically, port 465 is used with implicit TLS (secure: true), while port 587 is used withSTARTTLS[5][6][7]. You should ensure that yourSMTP_PORTandsecuresetting match the requirements of your specific SMTP provider [6][9]. The Hyperpolymath repositories include this workflow as a backfilled, dormant feature that is "armed" by setting the repository variablePUSH_EMAIL_ENABLED=true[1][10][11].Citations:
🏁 Script executed:
Repository: hyperpolymath/gnpl
Length of output: 8667
Use an implicit-TLS SMTP endpoint.
If
secrets.SMTP_PORTtargets a STARTTLS-only server, this step will fail before sending mail becausesecure: trueselects implicit TLS and STARTTLS is not implemented. Use an implicit-TLS endpoint, normally on port465.🤖 Prompt for AI Agents
Source: MCP tools
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: hyperpolymath/gnpl
Length of output: 2677
🌐 Web query:
GitHub hyperpolymath/smtp-notify-action v0.2.0 commit💡 Result:
There is no publicly indexed GitHub repository named hyperpolymath/smtp-notify-action, nor is there a version v0.2.0 associated with such a project [1][2][3][4][5][6]. The user's query likely refers to a GitHub workflow pattern used by the hyperpolymath organization, which implements email notifications via the third-party action dawidd6/action-send-mail [7]. As of June 2026, the hyperpolymath organization began backfilling various repositories with a "dormant push-email notification" workflow [1][4][6]. This workflow is gated by a repository variable (PUSH_EMAIL_ENABLED) and utilizes standard SMTP secrets to function [1][7][5]. It is not a standalone action, but rather a CI configuration that leverages the external action mentioned above [7].
Citations:
🏁 Script executed:
Repository: hyperpolymath/gnpl
Length of output: 1895
Pin the action to the immutable v0.2.0 commit.
The workflow uses the mutable tag
v0.2.0, while the matching commit isede1191ef6ff3ac02c4f4d9efdf837ee517e11d7. The lock file does not change the reference resolved by the runner.Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents
Source: MCP tools