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