Skip to content

build(deps): bump types-requests from 2.28.11.7 to 2.31.0.20240406 #189

build(deps): bump types-requests from 2.28.11.7 to 2.31.0.20240406

build(deps): bump types-requests from 2.28.11.7 to 2.31.0.20240406 #189

Workflow file for this run

name: Conventional Commits
on: [pull_request]
jobs:
lint-commits:
name: Lint Commits
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Install Commit Linting Tool 🔧
run: npm install --save-dev @commitlint/{cli,config-conventional}
- name: Set Linting Config to Conventional Commits spec 🔧
run: |
echo "module.exports = { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
- name: Lint 🚨
run: npx commitlint --from HEAD~1 --to HEAD --verbose