Skip to content
Draft
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions .changelog/new-github-pr-metadata-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Experimental support from the core team to add a github action that checks that each PR includes changelog information and a metadata about the version bump required.
14 changes: 14 additions & 0 deletions .github/workflows/pr_validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: PR Metadata Validation
on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: PR Metadata Validation
uses: gazebo-tooling/pr-data-action@jrivero/none
with:
token: ${{ secrets.GITHUB_TOKEN }}
changelog-dir: '.changelog'
Loading