File tree Expand file tree Collapse file tree 5 files changed +20
-95
lines changed Expand file tree Collapse file tree 5 files changed +20
-95
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,25 @@ jobs:
1313 name : PSV / Linux Build / Tests / Code coverage
1414 runs-on : ubuntu-latest
1515 steps :
16- - uses : actions/checkout@v2
16+ - uses : actions/checkout@v3
1717 - name : Use Node.js
18- uses : actions/setup-node@v1
18+ uses : actions/setup-node@v3
1919 with :
20- node-version : ' 16 '
20+ node-version : 16
2121 cache : npm
2222 - name : Build / Tests / Coverage
2323 run : scripts/linux/psv/build_test_psv.sh
2424 - name : Upload coverage to Codecov
25- uses : codecov/codecov-action@v1
25+ uses : codecov/codecov-action@v3
26+
27+ psv-commit-checker :
28+ name : PSV.Commit.Checker
29+ runs-on : ubuntu-latest
30+ steps :
31+ - uses : actions/checkout@v3
32+ with :
33+ fetch-depth : 0
34+ - name : Commit checker script. Verify commit text
35+ run : scripts/misc/commit_checker.sh
36+ shell : bash
2637
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ coverage:
44 precision : 4
55 notify :
66 wait_for_ci : false
7- ci :
8- - " travis.org"
97 status :
108 project :
119 authentication :
Original file line number Diff line number Diff line change 11#! /bin/bash -e
22#
3- # Copyright (C) 2020-2022 HERE Europe B.V.
3+ # Copyright (C) 2020-2023 HERE Europe B.V.
44#
55# Licensed under the Apache License, Version 2.0 (the "License");
66# you may not use this file except in compliance with the License.
2323# Requirements can be find in scripts/misc/commit_message_recom.txt
2424
2525# Saving whole commit message into file for reading below
26- echo " ` git log --pretty=format:' %B' -2 | sed ' 1d' | sed ' 1d' ` " >> commit.log
26+ git log -1 --no-merges --pretty=%B > commit.log
27+ echo " ----------------------------------------------"
28+ cat commit.log || true
29+ echo " ----------------------------------------------"
2730
2831# Counting number of lines in file
2932num_lines=` wc -l commit.log | cut -d' c' -f1`
You can’t perform that action at this time.
0 commit comments