Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Create CHANGELOG.md, CHANGELOG-PENDING.md, and corresponding GH action (
Browse files Browse the repository at this point in the history
  • Loading branch information
jbowen93 authored Dec 7, 2021
1 parent 225e28d commit 6e634fe
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pending-changelog-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Pending Changelog Checker"

on:
pull_request:
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
branches:
- master

jobs:
changelog-checker:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout source code"
uses: "actions/checkout@v2"
- name: Changelog check
uses: celestiaorg/changelog-checker@v1
with:
fileName: CHANGELOG-PENDING.md
checkNotification: Simple
noChangeLogLabel: no_changelog
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21 changes: 21 additions & 0 deletions CHANGELOG-PENDING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Unreleased Changes

## vX.Y.Z

Month, DD, YYYY

### BREAKING CHANGES

- [go package] (Link to PR) Description @username

### FEATURES

- [go package] (Link to PR) Description @username

### IMPROVEMENTS

- [go package] (Link to PR) Description @username

### BUG FIXES

- [go package] (Link to PR) Description @username
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Unreleased Changes

## vX.Y.Z

Month, DD, YYYY

### BREAKING CHANGES

- [go package] (Link to PR) Description @username

### FEATURES

- [go package] (Link to PR) Description @username

### IMPROVEMENTS

- [go package] (Link to PR) Description @username

### BUG FIXES

- [go package] (Link to PR) Description @username

0 comments on commit 6e634fe

Please sign in to comment.