xref: /libCEED/.github/workflows/release-notes.yml (revision 76a75aa2c73318d1f9b582994099ba009aa1c25f)
1name: Release Notes
2
3on:
4  push:
5
6jobs:
7  test:
8    strategy:
9      matrix:
10        os: [ubuntu-20.04]
11
12    runs-on: ${{ matrix.os }}
13
14    steps:
15    - name: Environment setup
16      uses: actions/checkout@v2
17    - name: Check release notes
18      run: |
19        git fetch origin main
20        git diff origin/main --exit-code include/ceed/* && ! git diff origin/main --exit-code doc/sphinx/source/releasenotes.rst
21