Skip to content

chore(deps): bump pypa/cibuildwheel from 2.13.1 to 2.14.1 #154

chore(deps): bump pypa/cibuildwheel from 2.13.1 to 2.14.1

chore(deps): bump pypa/cibuildwheel from 2.13.1 to 2.14.1 #154

#
# 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: ${{ github.triggering_actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
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 }}
run-hooks:
if: ${{ github.triggering_actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
- uses: actions/checkout@v3
- uses: pre-commit/[email protected]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true