mirror of
https://github.com/microsoft/graphrag.git
synced 2026-01-14 00:57:23 +08:00
21 lines
401 B
YAML
21 lines
401 B
YAML
name: Semver Check
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
branches: [main]
|
|
|
|
jobs:
|
|
semver:
|
|
# skip draft PRs
|
|
if: github.event.pull_request.draft == false
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Check Semver
|
|
run: ./scripts/semver-check.sh |