First attempt at GitHub action to ensure release note entry included in PRs.

pull/2396/head
derekpierre 2020-10-21 11:03:14 -04:00
parent 4fc1d469fb
commit 2ca7e1a38e
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
name: 'Check PR Release Note Entry'
on:
pull_request:
branches:
- main
tags-ignore:
- '*.*' # ignore releases
jobs:
release-note-entry:
name: 'Checking release note entry for PR ${{ github.event.number }}'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
test -f './newsfragments/${{ github.event.number }}.*'