ci: bump dawidd6/action-send-mail from 6e502825a508b867ab2954ad6343b68787624c01 to c50dc4cc848ade21f848990889906d804fae78c5 #1302
Workflow file for this run
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
| # SPDX-License-Identifier: MPL-2.0 | |
| # Thin wrapper around hyperpolymath/standards hypatia-scan-reusable.yml. | |
| # See standards#191 for the reusable's purpose and design. | |
| name: Hypatia Security Scan | |
| on: | |
| push: | |
| branches: [main, master, develop] | |
| # No `branches:` filter: this job emits the required check | |
| # `hypatia / Hypatia Neurosymbolic Analysis` (and drives the `Hypatia` | |
| # app check), so it must run on PRs against EVERY base. A required check | |
| # whose workflow is branch-filtered is never created and sits forever at | |
| # "Expected — Waiting for status to be reported". | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| workflow_dispatch: | |
| # Estate guardrail: cancel superseded runs so re-pushes don't pile up. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| security-events: write | |
| pull-requests: write | |
| jobs: | |
| hypatia: | |
| uses: hyperpolymath/standards/.github/workflows/hypatia-scan-reusable.yml@d135b05bfc647d0c0fbfedc7e80f37ea50f49236 | |
| secrets: inherit |