Skip to content

convert severity and elaboration system tasks (#276) #83

convert severity and elaboration system tasks (#276)

convert severity and elaboration system tasks (#276) #83

Workflow file for this run

name: Notice
on:
push:
branches:
- master
paths:
- stack.yaml
- stack.yaml.lock
- sv2v.cabal
- notice.sh
- NOTICE
jobs:
notice:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Regenerate NOTICE
run: ./notice.sh > NOTICE
- name: Validate NOTICE
run: |
if [ -n "`git status --porcelain`" ]; then
echo "Notice differs!"
PAGER= git diff
exit 1
fi