-
Notifications
You must be signed in to change notification settings - Fork 971
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Pending Changelog Checker Action and initial CHANGELOG.md and …
…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
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |