-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(ci): repoint push-email-notify to smtp-notify-action #46
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,19 +3,43 @@ | |
| # PUSH_EMAIL_ENABLED=true (the single on/off switch). Addresses are pre-filled; | ||
| # sending needs the org SMTP secrets (SMTP_HOST/PORT/USER/PASS). Inherited by | ||
| # new repos from the template; placed on existing repos by the farm sweep. | ||
| # | ||
| # Re-landed after the 2026-07-20 notification-storm freeze (removed in | ||
| # 09f94c5), now on hyperpolymath/smtp-notify-action: Node-free, the SMTP | ||
| # session is Idris2-specified and machine-checked, the binary is Zig-built, | ||
| # byte-reproducible, and SHA-256-pinned inside the action itself. | ||
| name: Push email notification | ||
| on: | ||
| push: {} | ||
| push: | ||
| # Branch pushes only: tag and deletion payloads mislabel Branch:/head_commit. | ||
| branches: ['**'] | ||
| concurrency: | ||
| # Deliberately per-RUN, so no run is ever queued behind another and none is | ||
| # ever cancelled. Do NOT "tidy" this into a shared group such as | ||
| # ${{ github.workflow }}-${{ github.ref }}. GitHub's workflow-syntax docs: | ||
| # "By default, any existing pending job or workflow in the same concurrency | ||
| # group will be canceled and the new queued job or workflow will take its | ||
| # place." That happens regardless of cancel-in-progress, which governs only | ||
| # the RUNNING job. On this workflow it silently loses a notification email, | ||
| # with no error anywhere. Every run here reports a DISTINCT commit, so there | ||
| # is no redundant work for a concurrency limit to remove. | ||
| # The docs also offer `queue: max` (up to 100 pending); not used, because 100 | ||
| # is still a cap whereas a per-run group needs none. | ||
| # Verified with zizmor 1.30.0: deleting this block raises concurrency-limits; | ||
| # this form silences it exactly as a shared group would. | ||
| group: push-email-${{ github.run_id }} | ||
| cancel-in-progress: false | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| notify: | ||
| name: Email on push | ||
| if: ${{ vars.PUSH_EMAIL_ENABLED == 'true' }} | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 5 | ||
| steps: | ||
| - name: Send push notification email | ||
| uses: dawidd6/action-send-mail@0bbdab096651ee93f37ec02383e088183d41ff0b # pinned | ||
| uses: hyperpolymath/smtp-notify-action@ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7 # v0.2.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win 🔎 Supported by static analysis🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
workflow=".github/workflows/push-email-notify.yml"
sha="ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7"
action_file="$(mktemp)"
trap 'rm -f "$action_file"' EXIT
curl -fsSL \
"https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/${sha}/action.yml" \
-o "$action_file"
grep -Fq 'implicit TLS from the first byte' "$action_file"
grep -Fq 'STARTTLS on a plain connection' "$action_file"
grep -Fq 'AUTH PLAIN username' "$action_file"
grep -Fq 'uses: hyperpolymath/smtp-notify-action@ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7' "$workflow"
grep -Fq 'server_port: ${{ secrets.SMTP_PORT }}' "$workflow"
grep -Fq 'secure: true' "$workflow"
printf '%s\n' \
'Manual check required: confirm SMTP_PORT uses implicit TLS and the provider supports AUTH PLAIN.'Repository: hyperpolymath/anytype Length of output: 256 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
workflow=".github/workflows/push-email-notify.yml"
sha="ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7"
printf '%s\n' '--- workflow ---'
cat -n "$workflow" | sed -n '1,90p'
printf '%s\n' '--- action.yml ---'
curl -fsSL "https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/${sha}/action.yml"
printf '%s\n' '--- repository tree at pinned commit ---'
curl -fsSL \
-H 'Accept: application/vnd.github+json' \
"https://api.github.com/repos/hyperpolymath/smtp-notify-action/git/trees/${sha}?recursive=1" |
jq -r '.tree[] | select(.type == "blob") | .path' |
sed -n '1,120p'Repository: hyperpolymath/anytype Length of output: 9492 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
sha="ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7"
base="https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/${sha}"
for file in src/main.zig src/smtp.zig README.adoc MIGRATION.adoc; do
printf '\n--- %s ---\n' "$file"
curl -fsSL "$base/$file" |
grep -n -E -C 4 'SMTP_SECURE|secure|STARTTLS|AUTH PLAIN|AUTH|implicit|465|587|smtp' |
sed -n '1,240p'
doneRepository: hyperpolymath/anytype Length of output: 24723 🏁 Script executed: #!/usr/bin/env bash
set -euo pipefail
repo="hyperpolymath/smtp-notify-action"
pinned="ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7"
tag="v0.2.0"
ref="$(curl -fsSL -H 'Accept: application/vnd.github+json' \
"https://api.github.com/repos/${repo}/git/ref/tags/${tag}")"
type="$(jq -r '.object.type' <<<"$ref")"
object="$(jq -r '.object.sha' <<<"$ref")"
if [ "$type" = "tag" ]; then
resolved="$(curl -fsSL -H 'Accept: application/vnd.github+json' \
"https://api.github.com/repos/${repo}/git/tags/${object}" |
jq -r '.object.sha')"
else
resolved="$object"
fi
printf 'tag_object_type=%s\n' "$type"
printf 'tag_object_sha=%s\n' "$object"
printf 'resolved_commit_sha=%s\n' "$resolved"
printf 'pinned_commit_sha=%s\n' "$pinned"
curl -fsSL -H 'Accept: application/vnd.github+json' \
"https://api.github.com/repos/${repo}/commits/${pinned}" |
jq -r '"pinned_commit_exists=\(.sha)"'
[ "$resolved" = "$pinned" ]Repository: hyperpolymath/anytype Length of output: 417 Confirm the SMTP transport before enabling this workflow. When 🤖 Prompt for AI AgentsSource: MCP tools |
||
| with: | ||
| server_address: ${{ secrets.SMTP_HOST }} | ||
| server_port: ${{ secrets.SMTP_PORT }} | ||
|
|
||
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.
🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
sed -n '1,120p' .github/workflows/push-email-notify.ymlRepository: hyperpolymath/anytype
Length of output: 3002
🤖 get_repo_knowledge executed:
get_repo_knowledge hyperpolymath/anytype /tmp/coderabbit-repo-knowledge/hyperpolymath-anytype-17573e72Length of output: 1147
🌐 Web query:
GitHub Actions push event branch deletion github.event.deleted head_commit null branches filter💡 Result:
When a branch is deleted in a GitHub repository, the
pushwebhook event is triggered with thedeletedattribute set totrue[1][2]. In this scenario, thehead_commitobject in the JSON payload becomesnull[1][2]. Because branch deletion triggers apushevent, any GitHub Actions workflow configured to run onpushwill be triggered by a deletion unless explicitly filtered. To prevent your workflows from running on branch deletions, you can use a conditional check in your workflow'sjobssection. Since branch deletion setsgithub.event.deletedtotrue, you can skip the job when this condition is met: jobs: my_job: if: github.event.deleted!= true runs-on: ubuntu-latest steps: - run: echo "This job will not run on branch deletion." Alternatively, if you want to prevent the workflow from triggering entirely based on the event type, note thatbranchesfilters in theon: pushconfiguration cannot directly filter out deletions; they only match branch name patterns [3][4]. Therefore, using theifconditional within the job is the standard and most effective way to handle this [5]. If you require a trigger that specifically separates deletions from pushes, you would need to use thedeleteevent instead of (or in addition to) thepushevent, although this will not help you filter thepushevent itself [6][1][2].Citations:
Exclude branch-deletion push events.
branches: ['**']matches branch refs but does not checkgithub.event.deleted. When enabled, this job can process a branch-deletion payload with nohead_commitand send an incorrect notification. Add!github.event.deletedto the job condition.🤖 Prompt for AI Agents
Source: MCP tools