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