Merge branch 'refs/heads/main' into tsmith/automate-release #4
Workflow file for this run
This file contains 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
# write a Github actions to verify the workflow "Python Client Tests" on the main branch ran successfully. | |
name: Client Release Check | |
on: | |
pull_request: | |
branches: | |
- release-please--branches--tsmith/automate-release--components--cryoet-data-portal-python-client | |
- tsmith/automate-release | |
push: | |
branches: | |
- release-please--branches--tsmith/automate-release--components--cryoet-data-portal-python-client | |
- tsmith/automate-release | |
jobs: | |
release-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check client tests on main | |
uses: actions/github-script@v7 | |
with: | |
retries: 10 | |
script: | | |
const { data } = await github.rest.checks.listForRef({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
ref: 'main', | |
check_name: 'Python Client Tests', | |
filter: 'latest', | |
}); | |
if (data.total_count === 0) { | |
core.setFailed('No checks found on main'); | |
} | |
if (data.check_runs[0].conclusion !== 'success') { | |
core.setFailed('Python Client Tests on main did not pass'); | |
} |