mirror of https://github.com/nucypher/nucypher.git
First attempt at GitHub action to ensure release note entry included in PRs.
parent
4fc1d469fb
commit
2ca7e1a38e
|
@ -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 }}.*'
|
Loading…
Reference in New Issue