-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(ci): repoint push-email-notify to smtp-notify-action #66
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 | ||
|
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. 🔒 Security & Privacy | 🔵 Trivial | ⚡ Quick win 🔎 Supported by static analysis🏁 Script executed: #!/bin/bash
set -e
printf '%s\n' '--- applicable repository conventions ---'
find /tmp/coderabbit-repo-knowledge/hyperpolymath-betlangiser-10cdad08 -maxdepth 2 -type f -name '*.md' -print
printf '%s\n' '--- workflow ---'
cat -n .github/workflows/push-email-notify.yml
printf '%s\n' '--- referenced action metadata ---'
curl -fsSL https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/1b3b752d39a4fe4c0f28f10905e4608789d3e050/action.yml | cat -nRepository: hyperpolymath/betlangiser Length of output: 7362 Remove the unused This workflow and the referenced action do not use repository contents or the GitHub API. Set 🤖 Prompt for AI AgentsSource: MCP tools |
||
| 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. 🔒 Security & Privacy | 🟠 Major | ⚡ Quick win 🔎 Supported by static analysis🏁 Script executed: #!/bin/bash
set -eu
printf '%s\n' '--- workflow ---'
sed -n '34,48p' .github/workflows/push-email-notify.yml
printf '%s\n' '--- tag and commit resolution ---'
python3 - <<'PY'
import json
import urllib.request
repo = "hyperpolymath/smtp-notify-action"
for ref in ("v0.1.0", "v0.2.0"):
url = f"https://api.github.com/repos/{repo}/git/ref/tags/{ref}"
with urllib.request.urlopen(url) as response:
ref_data = json.load(response)
obj = ref_data["object"]
print(ref, "ref_object", obj["type"], obj["sha"])
sha = obj["sha"]
if obj["type"] == "tag":
with urllib.request.urlopen(f"https://api.github.com/repos/{repo}/git/tags/{sha}") as response:
tag_data = json.load(response)
print(ref, "dereferenced", tag_data["object"]["type"], tag_data["object"]["sha"])
sha = tag_data["object"]["sha"]
with urllib.request.urlopen(f"https://api.github.com/repos/{repo}/commits/{sha}") as response:
commit_data = json.load(response)
print(ref, "commit", commit_data["sha"])
PY
printf '%s\n' '--- requested and selected pins ---'
for sha in \
1b3b752d39a4fe4c0f28f10905e4608789d3e050 \
ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7
do
printf '%s: ' "$sha"
curl -fsSL "https://api.github.com/repos/hyperpolymath/smtp-notify-action/commits/$sha" |
python3 -c 'import json,sys; print(json.load(sys.stdin)["sha"])'
done
printf '%s\n' '--- action metadata at both pins ---'
for sha in \
1b3b752d39a4fe4c0f28f10905e4608789d3e050 \
ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7
do
echo "PIN $sha"
curl -fsSL "https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/$sha/action.yml" |
sed -n '1,120p'
doneRepository: hyperpolymath/betlangiser Length of output: 3016 🤖 get_repo_knowledge executed:
Length of output: 1349 🏁 Script executed: #!/bin/bash
set -u
api='https://api.github.com/repos/hyperpolymath/smtp-notify-action'
for ref in v0.1.0 v0.2.0; do
echo "--- tag $ref ---"
curl -ksSf "$api/git/ref/tags/$ref" |
python3 -c '
import json,sys
d=json.load(sys.stdin)
print(json.dumps(d["object"]))
'
done
for sha in \
1b3b752d39a4fe4c0f28f10905e4608789d3e050 \
ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7
do
echo "--- commit $sha ---"
curl -ksSf "$api/commits/$sha" |
python3 -c '
import json,sys
d=json.load(sys.stdin)
print(json.dumps({"sha": d.get("sha"), "message": d.get("commit",{}).get("message","").splitlines()[0]}))
'
done
for sha in \
1b3b752d39a4fe4c0f28f10905e4608789d3e050 \
ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7
do
echo "--- action.yml $sha ---"
curl -ksSf "https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/$sha/action.yml" |
sed -n '1,100p'
doneRepository: hyperpolymath/betlangiser Length of output: 8601 🏁 Script executed: #!/bin/bash
set -eu
api='https://api.github.com/repos/hyperpolymath/smtp-notify-action'
for ref in v0.1.0 v0.2.0; do
tag_sha="$(
curl -ksSf "$api/git/ref/tags/$ref" |
python3 -c 'import json,sys; print(json.load(sys.stdin)["object"]["sha"])'
)"
printf '%s tag object: %s\n' "$ref" "$tag_sha"
curl -ksSf "$api/git/tags/$tag_sha" |
python3 -c '
import json,sys
d=json.load(sys.stdin)
print("%s commit: %s" % (d["object"]["type"], d["object"]["sha"]))
'
done
for sha in \
1b3b752d39a4fe4c0f28f10905e4608789d3e050 \
ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7
do
printf '%s release URL: ' "$sha"
curl -ksSf "https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/$sha/action.yml" |
grep -E 'releases/download|asset=' | head -n 3
doneRepository: hyperpolymath/betlangiser Length of output: 905 Align the action pin with the PR objective. Line 42 selects 🤖 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/betlangiser
Length of output: 3006
🏁 Script executed:
Repository: hyperpolymath/betlangiser
Length of output: 3710
🌐 Web query:
GitHub Actions push event branches filter deleted branch github.event.deleted head_commit null official documentation💡 Result:
When a branch is deleted in a GitHub repository, it can trigger a push event [1][2]. In this specific context, the push event payload includes a boolean field
deleted: true[1][3][4]. Because the branch no longer exists, thehead_commitfield in the webhook payload will typically benull[1][2]. GitHub Actions workflows configured to run on thepushevent will execute when a branch is deleted unless they are explicitly filtered to ignore these events [3][5][6]. To prevent your workflow from running during branch deletions, you should add a conditional check to your job or step using theifcontext [4][6][7]: jobs: my-job: if: ${{ github.event.deleted!= true }} runs-on: ubuntu-latest steps: - run: echo "This only runs on regular pushes, not deletions." Alternatively, if you need to perform specific cleanup actions only when a branch is deleted, you can check for thedeletedproperty directly [4]: jobs: cleanup: if: ${{ github.event.deleted == true }} runs-on: ubuntu-latest steps: - run: echo "Performing cleanup for deleted branch: ${{ github.ref }}" There is no native mechanism in the workflow YAML filter syntax (e.g.,on.push.branches) to filter out deleted branches specifically [8][9]; the filtering must be handled via conditional logic within the workflow jobs themselves [5][6]. While thedeleteevent exists, it is distinct from thepushevent and is used for handling the deletion of branches or tags via the specificdeletewebhook event type [1][10].Citations:
Exclude branch-deletion push events.
push.branches: ['**']also matches branch deletions. When enabled, this job can send an email withgithub.event.head_commit.messageempty because deletion payloads have nohead_commit. Add the deletion guard:🤖 Prompt for AI Agents
Source: MCP tools