Skip to content

Commit

Permalink
Merge pull request #1 from minibugdev/feature/ci-changelog-checker
Browse files Browse the repository at this point in the history
Run changelog checker action once checked the checklist
  • Loading branch information
minibugdev committed Oct 9, 2022
2 parents 2719d81 + 46cf03b commit 3bffb34
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Changelog checks

on:
pull_request:
branches: [ main ]
types: [ opened, edited ]

jobs:
build:
if: ${{ contains(github.event.pull_request.body, '[x] I''ve added new item into [Changelog](docs/Changelog.md) under [Unreleased]') }}
runs-on: ubuntu-latest
steps:
- name: Run changelog checker
uses: mwcodebase/versioning-checker@85b1edf4dbf1ff8fbe37884ea600de012ca3d7a3
with:
tracked_files: 'docs/Changelog.md'
1 change: 1 addition & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

### Changed
- Changelog checks

### Removed

Expand Down

0 comments on commit 3bffb34

Please sign in to comment.