Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run PR Checks

on:
pull_request:
branches:
- develop # Branch to run checks on

jobs:
# Verify that release notes have been updated. PRs should include summary of
# what has changed in the release notes.
check_release_notes:
runs-on: ubuntu-latest
name: Verify RELEASE_NOTES.md has been updated
steps:
- name: Verify RELEASE_NOTES.md updated
uses: takanuva15/verify-file-updated@v1
with:
filename_to_check: RELEASE_NOTES.md # Check the RELEASE_NOTES.md for change
excused_label: "no release notes check" # Optional: add this label to PRs to skip the check
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This release contains ...
Notable changes include:

* New features / API changes:
* Add check to verify release notes have been updated for a PR.

* Build changes/improvements:

Expand Down