mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 18:47:03 +05:30
fix(ci): add job to validate changelog
This commit is contained in:
parent
e2fa605db6
commit
c5fe4f5325
1 changed files with 13 additions and 0 deletions
13
.github/workflows/ci.yml
vendored
13
.github/workflows/ci.yml
vendored
|
@ -57,11 +57,24 @@ jobs:
|
||||||
base-ref: refs/heads/main
|
base-ref: refs/heads/main
|
||||||
head-ref: ${{ github.ref }}
|
head-ref: ${{ github.ref }}
|
||||||
|
|
||||||
|
validate-changelog:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
|
|
||||||
|
- name: Check changelog format
|
||||||
|
uses: mindsers/changelog-reader-action@b97ce03a10d9bdbb07beb491c76a5a01d78cd3ef # v2.2.2
|
||||||
|
with:
|
||||||
|
path: ./CHANGELOG.md
|
||||||
|
validation_level: error
|
||||||
|
|
||||||
deploy-release-snapshot:
|
deploy-release-snapshot:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: "github.event_name == 'push' && github.event.ref == 'refs/heads/main'"
|
if: "github.event_name == 'push' && github.event.ref == 'refs/heads/main'"
|
||||||
needs:
|
needs:
|
||||||
- check
|
- check
|
||||||
|
- validate-changelog
|
||||||
- dependency-review
|
- dependency-review
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue