[#1808] .github: Add changelog workflow

It checks whether the CHANGELOG.md was updated in a just-created PR.

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
support/v0.34
Pavel Karpy 2022-09-21 22:58:13 +03:00 committed by LeL
parent 7cc68cf4d4
commit 93ae3f0b19
2 changed files with 30 additions and 0 deletions

28
.github/workflows/changelog.yml vendored 100644
View File

@ -0,0 +1,28 @@
name: CHANGELOG check
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Check for updates
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get changed CHANGELOG
id: changelog-diff
uses: tj-actions/changed-files@v29
with:
files: CHANGELOG.md
- name: Fail if changelog not updated
if: steps.changelog-diff.outputs.any_changed == 'false'
uses: actions/github-script@v3
with:
script: |
core.setFailed('CHANGELOG.md has not been updated')

View File

@ -5,6 +5,8 @@ Changelog for NeoFS Node
### Added
- Changelog updates CI step (#1808)
### Changed
### Fixed