chore(deps): bump the npm-updates group across 1 directory with 22 updates #700
Workflow file for this run
This file contains hidden or 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@v6 | |
| # Most recent release of https://github.com/CondeNast/conventional-pull-request-action/releases | |
| - uses: CondeNast/conventional-pull-request-action@v0.2.0 | |
| 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' |