nucypher/.github/workflows/pr_release_note_entry.yml

22 lines
559 B
YAML
Raw Normal View History

name: '📝 Check Release Note'
on:
pull_request:
branches:
- main
- v*.*.*
2023-10-04 17:01:04 +00:00
- epic-*
tags-ignore:
- '*.*' # ignore releases
jobs:
release-note-entry:
name: 'Checking release note entry for PR ${{ github.event.number }}'
runs-on: ubuntu-latest
steps:
2023-10-13 12:11:20 +00:00
- name: Checkout repo
uses: actions/checkout@v4
- name: Check for presence of newsfragment file
run: ls -l ${{ github.workspace }}/newsfragments/ | grep -E '${{ github.event.number }}\.(feature|bugfix|doc|removal|misc|dev)\.rst'