[CHORE](ci) Point version-check workflow at MCD CodeArtifact #421
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
| name: Check Python package version numbers | |
| on: | |
| # No path filter: "check / Check Python package versions" is a required | |
| # status check (see schema.yml in omf-github-terraform), and GitHub never | |
| # satisfies a required check that a path filter prevents from running. | |
| pull_request: {} | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| uses: $/.github/workflows/reusable-check-python-package-versions.yaml | |
| permissions: | |
| id-token: write # Required for AWS CodeArtifact OIDC authentication | |
| contents: read | |
| with: | |
| before_commit: ${{ github.event.pull_request.base.sha }} | |
| after_commit: ${{ github.event.pull_request.head.sha }} |