Skip to content

Commit

Permalink
Create Pending Changelog Checker Action and initial CHANGELOG.md and …
Browse files Browse the repository at this point in the history
…CHANGELOG-PENDING.md files (#252)


* Add Pending Changelog Checker action to check for CHANGELOG-PENDING.md file in PRs

* set noChangeLogLabel to no_changelog
  • Loading branch information
jbowen93 authored Nov 30, 2021
1 parent 803ff1c commit 31cdabc
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:
- main

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 31cdabc

Please sign in to comment.