Skip to content

chore(deps): bump third-party/abseil-cpp from 8c495b5 to 07fff76 #544

chore(deps): bump third-party/abseil-cpp from 8c495b5 to 07fff76

chore(deps): bump third-party/abseil-cpp from 8c495b5 to 07fff76 #544

#
# Project NuriKit - Copyright 2023 SNU Compbio Lab.
# SPDX-License-Identifier: Apache-2.0
#
name: Common PR reviews
on:
pull_request:
branches:
- main
- "release/**"
types:
- opened
- reopened
- synchronize
- ready_for_review
defaults:
run:
shell: bash
jobs:
commitlint:
if: ${{ !endsWith(github.triggering_actor, '[bot]') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: "18"
- name: Install commitlint
run: npm install commitlint@latest
- name: Validate commit messages
run: |
npx commitlint --verbose \
--from ${{ github.event.pull_request.base.sha }} \
--to ${{ github.event.pull_request.head.sha }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true