ci: deploy docs via Ddraig SSG (#1) #8
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 | |
| # | |
| # Standalone Hypatia security scan (push / PR / weekly). This is NOT a duplicate | |
| # of the `hypatia-scan` job in `static-analysis-gate.yml`: that job exists to | |
| # feed the gitbot-fleet LEARNING pipeline (via `deposit-findings`), whereas this | |
| # workflow is the repo's independent security scan. Same tool, two consumers. | |
| # See .github/workflows/README.adoc. | |
| name: Hypatia Security Scan | |
| on: | |
| push: | |
| branches: [main, master, develop] | |
| pull_request: | |
| branches: [main, master] | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| security-events: read | |
| jobs: | |
| scan: | |
| uses: hyperpolymath/standards/.github/workflows/hypatia-scan-reusable.yml@09e7023d24682621bea4e11965a1ef5e87d86c3b |