mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-30 00:30:09 +00:00
23 lines
370 B
YAML
23 lines
370 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"
|
|
|
|
jobs:
|
|
reno:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Skip mandatory job
|
|
run: echo "Skipped!"
|