-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(ci): repoint push-email-notify to smtp-notify-action #40
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@6e502825a508b867ab2954ad6343b68787624c01 # pinned | ||
| uses: hyperpolymath/smtp-notify-action@ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7 # v0.2.0 | ||
|
Contributor
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. 🩺 Stability & Availability | 🔵 Trivial 🔎 Supported by static analysis🏁 Script executed: #!/bin/bash
set -e
printf '%s\n' '--- workflow ---'
sed -n '1,80p' .github/workflows/push-email-notify.yml
printf '%s\n' '--- action metadata at pinned commit ---'
curl -fsSL https://raw.githubusercontent.com/hyperpolymath/smtp-notify-action/ede1191ef6ff3ac02c4f4d9efdf837ee517e11d7/action.yml
printf '%s\n' '--- implementation references ---'
curl -fsSL https://api.github.com/repos/hyperpolymath/smtp-notify-action/contents | jq -r '.[].name'Repository: hyperpolymath/k9-ecosystem Length of output: 8751 Use an SMTP endpoint compatible with this action. If 🤖 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:
Repository: hyperpolymath/k9-ecosystem
Length of output: 9143
🌐 Web query:
GitHub Actions push event branch deletion branches filter head_commit null workflow syntax💡 Result:
In GitHub Actions, the
pushevent is triggered when a branch is deleted [1][2]. During a branch deletion, the push event payload is sent with specific indicators:deletedis set totrue[3], andhead_commitisnull[3]. When configuring workflows, branch filters (such asbranchesorbranches-ignoreunderon: push:) are evaluated against the branch that was deleted [4]. If a workflow is configured to run on a push to a specific branch, it may still be triggered if that branch is deleted, because the event is technically a push event affecting that reference [2]. To prevent a workflow from running specifically when a branch is deleted, or to handle thehead_commit: nullstate, you can use conditional job execution in your workflow YAML [5]: jobs: my_job: if: ${{ github.event.deleted!= true }} runs-on: ubuntu-latest steps: - name: Your step run: echo "This only runs if the branch was not deleted." Alternatively, if you need to react explicitly to branch deletions, use thedeleteevent instead ofpush[1]. Note that thedeleteevent workflow must exist on the default branch of the repository to be triggered [4][6]. You can filterdeleteevents by branch name using thegithub.event.refproperty within a conditional: on: delete: jobs: on-delete: if: ${{ github.event.ref_type == 'branch' && startsWith(github.event.ref, 'feature/') }} runs-on: ubuntu-latest steps: - run: echo "Branch ${{ github.event.ref }} was deleted." [2]Citations:
Exclude deleted branches from the notification job.
branches: ['**']can match a branch-deletionpushevent. GitHub setsgithub.event.deletedtotrueandgithub.event.head_committonull, so the workflow can send an incomplete email. Addgithub.event.deleted != trueto the job condition.🤖 Prompt for AI Agents
Source: MCP tools