release: v0.5.0 #23
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
| # Source repo guard-main-provenance wrapper — calls the centralized reusable workflow. | |
| # Copy to .github/workflows/guard-main-provenance.yml in repos with the dev→main pattern. | |
| # | |
| # Verifies commits in PRs to main came from squash-merged PRs to dev | |
| # (have (#N) references). Only needs pull-requests: read. | |
| name: Guard main commit provenance | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| guard-provenance: | |
| uses: brettdavies/.github/.github/workflows/guard-main-provenance.yml@main |