Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2021-11-13 01:35:22 +0300
committerGitHub <noreply@github.com>2021-11-13 01:35:22 +0300
commit9cd30894f6e708475ec56cea63eb8c960df779a4 (patch)
tree4bc3eba78de9b2a0593608dc0aa6cd93aef755d3 /.github
parent69f487efc734f2b9bb67f46f99cd98e1c1e13d9b (diff)
tools: only validate first commit message of a PR
PR-URL: https://github.com/nodejs/node/pull/40740 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/commit-lint.yml11
1 files changed, 4 insertions, 7 deletions
diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml
index f362f6103f7..1609d239404 100644
--- a/.github/workflows/commit-lint.yml
+++ b/.github/workflows/commit-lint.yml
@@ -1,4 +1,4 @@
-name: "Commit messages adheres to guidelines at https://goo.gl/p2fr5Q"
+name: "First commit message adheres to guidelines at https://goo.gl/p2fr5Q"
on: [pull_request]
@@ -9,17 +9,14 @@ jobs:
lint-commit-message:
runs-on: ubuntu-latest
steps:
- - name: Compute number of commits in the PR
- id: nb-of-commits
- run: echo "::set-output name=nb::$((${{ github.event.pull_request.commits }} + 1))"
- uses: actions/checkout@v2
with:
- fetch-depth: ${{ steps.nb-of-commits.outputs.nb }}
+ fetch-depth: 2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ env.NODE_VERSION }}
- - name: Validate commit messages
+ - name: Validate commit message
run: |
echo "::add-matcher::.github/workflows/commit-lint-problem-matcher.json"
- git log --oneline -${{ github.event.pull_request.commits }} HEAD^ | awk '{ if ($2 != "fixup!" && $2 != "squash!") { print $1 } }' | xargs npx -q core-validate-commit --no-validate-metadata --tap
+ git rev-parse HEAD^ | xargs npx -q core-validate-commit --no-validate-metadata --tap