Qa 139 vscode smoke #272
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: | |
| contents: read | |
| jobs: | |
| governance: | |
| uses: hyperpolymath/standards/.github/workflows/governance-reusable.yml@main |