Support reading V1 group details with explicit version in the name. #2869
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
name: Check PR body | |
on: | |
pull_request: | |
types: [opened, edited] | |
paths-ignore: | |
- '_quarto.yml' | |
- 'quarto-materials/*' | |
- '**/.md' | |
- 'doc/source/conf.py' | |
- 'tiledb/sm/c_api/tiledb_version.h' | |
jobs: | |
check_pr_body: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v3 | |
- name: Run PR body checker | |
run: | | |
cat <<'EOF' | scripts/parse_pr.py | |
${{ github.event.pull_request.body }} | |
EOF |