Skip to content

Commit

Permalink
add changelog workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
archeoss committed Oct 3, 2023
1 parent 4c069a4 commit 21151d8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/changelog-updated.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Changelog checker"
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]

jobs:
# Enforces the update of a changelog file on every pull request
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dangoslen/changelog-enforcer@v2
with:
changeLogPath: "CHANGELOG.md"
skipLabels: "Skip-Changelog"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Bob Management GUI changelog

- Initial project structure (#1)
- Dockerfile and Docker-Compose to simplify deployment (#5)
- CI/CD configuration (#11)
1 change: 0 additions & 1 deletion cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@ mod config;
pub use clap::Parser;
pub use cli::Args;
pub use config::{Config, FromFile, LoggerConfig};

0 comments on commit 21151d8

Please sign in to comment.