aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/news.yml
blob: 11807e9b428ff05d5849d4cb2f88bbe4437f9056 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "news.txt check"
on:
  pull_request:
    branches:
    - 'master'
jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
        with:
          fetch-depth: 0
          ref: ${{ github.event.pull_request.head.sha }}
      - name: news.txt needs to be updated
        run: |
          for commit in $(git rev-list HEAD~${{ github.event.pull_request.commits }}..HEAD); do
            message=$(git log -n1 --pretty=format:%s $commit)
            type="$(echo "$message" | sed -E 's|([[:alpha:]]+)(\(.*\))?!?:.*|\1|')"
            breaking="$(echo "$message" | sed -E 's|[[:alpha:]]+(\(.*\))?!:.*|breaking-change|')"
            if [[ "$type" == "feat" ]] || [[ "$breaking" == "breaking-change" ]]; then
              ! git diff HEAD~${{ github.event.pull_request.commits }}..HEAD --quiet runtime/doc/news.txt ||
              {
                echo "
                  Pull request includes a new feature or a breaking change, but
                  news.txt hasn't been updated yet. This is just a reminder
                  that news.txt may need to be updated. You can ignore this CI
                  failure if you think the change won't be of interest to
                  users."
                  exit 1
               }
            fi
          done