chore(deps): Bump dawidd6/action-send-mail from 0bbdab096651ee93f37ec02383e088183d41ff0b to 0fd6142bc2fdec26ea3c70b93c3e3a084d98a863 in the actions group #146
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 | |
| # governance.yml — single wrapper calling the shared estate governance bundle | |
| # in hyperpolymath/standards. Replaces ~8 duplicated per-repo governance | |
| # workflows (verisimiser#59 estate rollout). Load-bearing build/security | |
| # workflows (rust-ci, codeql, dependabot, release, secret-scanner, scorecard) | |
| # stay standalone in this repo. | |
| name: Governance | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| workflow_dispatch: | |
| # Estate guardrail: cancel superseded runs so re-pushes / rebased PR | |
| # updates do not pile up queued runs against the shared account-wide | |
| # Actions concurrency pool. Applied only to read-only check workflows | |
| # (no publish/mutation), so cancelling a superseded run is always safe. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| actions: read | |
| contents: read | |
| jobs: | |
| governance: | |
| uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@81dbf2dd854b1444fd6236fa2352474383b2c2b9 |