mirror of https://github.com/nucypher/nucypher.git
Merge pull request #2396 from derekpierre/release-notes-action
Simple GitHub action to ensure release note entry included in PRs into main.pull/2415/head
commit
45e0c16f6d
|
@ -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 ${{ github.workspace }}/newsfragments/${{ github.event.number }}.*
|
|
@ -0,0 +1 @@
|
||||||
|
GitHub Action to ensure that each pull request into main makes an associated release note entry.
|
Loading…
Reference in New Issue