Skip to content

Commit

Permalink
Merge cross-rs#552
Browse files Browse the repository at this point in the history
552: Add changelog.yml GHA workflow r=adamgreig a=therealprof

Adds a GHA check to ensure every PR is accompanied by a edit of CHANGELOG.md to list the changes so we don't run into the usual issue of having to come up with all entries when someone requests a release.

Co-authored-by: Daniel Egger <daniel@eggers-club.de>
  • Loading branch information
bors[bot] and therealprof authored Apr 20, 2021
2 parents d9ae167 + 82e3e91 commit 7405f27
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
pull_request:

name: Changelog check

jobs:
changelog:
name: Changelog check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- name: Changelog updated
uses: Zomzog/changelog-checker@v1.1.0
with:
fileName: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7405f27

Please sign in to comment.