build(deps): bump node from 22-slim to 23-slim #430
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure PRs follow the Conventional Commits specification | |
name: conventional-pull-request | |
on: | |
pull_request: | |
branches: [main] | |
types: [opened, edited, synchronize] | |
jobs: | |
lint-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Most recent release of https://github.com/CondeNast/conventional-pull-request-action/releases | |
- uses: CondeNast/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# Don't use config.js for now as the project uses config.ts | |
# commitlintRulesPath: "./commitlint.config.js" # default: undefined | |
# If the PR contains a single commit, fail if the commit message and the PR title do not match | |
commitTitleMatch: "false" # default: 'true' | |
# If you squash merge PRs and enabled "Default to PR title for squash merge commits", you can disable all linting of commits | |
ignoreCommits: "true" # default: 'false' |