feat: Add the ability to use OAuth2 to authenticate to the REST API #603
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
| --- | |
| name: checks | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| "on": | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| conventional-commits: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| uses: broadinstitute/shared-workflows/.github/workflows/conventional-commit.yaml@v6.0.0 | |
| linting: | |
| uses: broadinstitute/shared-workflows/.github/workflows/python-lint.yaml@v6.0.0 | |
| pre-commit: | |
| uses: broadinstitute/shared-workflows/.github/workflows/pre-commit.yaml@v6.0.0 | |
| unit-tests: | |
| uses: broadinstitute/shared-workflows/.github/workflows/python-unit-test.yaml@v6.0.0 | |
| with: | |
| python_package_name: cert_manager | |
| python_versions: '{ "versions": [ "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ] }' |