Skip to content

Commit 80b4ebb

Browse files
committed
Enhancement(deployment): Format Changes in changelogChecker yaml #18
1 parent f575762 commit 80b4ebb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Changelog Check
2+
on:
3+
push:
4+
branches:
5+
- change_log_action
6+
pull_request:
7+
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
8+
branches:
9+
- main
10+
- develop
11+
jobs:
12+
build:
13+
name: Check Actions
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Check for changelog updates
20+
uses: Zomzog/changelog-checker@v1.2.0
21+
with:
22+
fileName: CHANGELOG.md # default `CHANGELOG.adoc`
23+
noChangelogLabel: "no changelog" # default `no changelog`
24+
checkNotification: Simple # default `Detailed`
25+
26+
env:
27+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)