Files
rocm-systems/projects/hipother/.github/workflows/validate-pr-description.yml
T
Lytovchenko, Danylo e500a686e2 SWDEV-123456 - add validation workflows (#13)
[ROCm/hipother commit: 67eb0874e9]
2025-05-28 10:10:24 +02:00

23 lines
524 B
YAML

name: Validate PR desription
on:
pull_request:
types: [opened, edited, synchronize]
jobs:
validate-pr-description:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Validate PR description
env:
PR_DESCRIPTION: ${{ github.event.pull_request.body }}
run: python .github/scripts/validate_pr_description.py