SWDEV-123456 - add validation workflows (#96)

[ROCm/hip commit: 893718cdd7]
This commit is contained in:
Lytovchenko, Danylo
2025-05-28 10:09:53 +02:00
committed by GitHub
parent 159f1d3d93
commit dfe367ef86
4 changed files with 213 additions and 0 deletions
@@ -0,0 +1,22 @@
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