2022-09-19 15:45:39 +00:00
|
|
|
name: changelog
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-09-21 20:38:07 +00:00
|
|
|
types: [opened, synchronize, labeled, unlabeled, edited]
|
2022-09-19 15:45:39 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
name: Check changelog entry
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-04 20:47:53 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-12-14 21:07:11 +00:00
|
|
|
- uses: actions/setup-python@v4
|
2023-05-01 15:53:57 +00:00
|
|
|
- run: python -m pip install --upgrade pip && pip install nox
|
2022-12-14 21:07:11 +00:00
|
|
|
- run: nox -s check-changelog
|