mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-30 16:47:19 +00:00
* chore: fix invalid release note * try improving relnote linting * add relnotes path * fix bad release note * improve reno config
24 lines
406 B
YAML
24 lines
406 B
YAML
name: Check Release Notes
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
- labeled
|
|
- unlabeled
|
|
paths-ignore:
|
|
- "**.py"
|
|
- "pyproject.toml"
|
|
- "!.github/**/*.py"
|
|
- "releasenotes/notes/*.yaml"
|
|
|
|
jobs:
|
|
reno:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip mandatory job
|
|
run: echo "Skipped!"
|