chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 in /packages/vue #912
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
name: Check PR title | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [opened, edited, synchronize, reopened] | |
jobs: | |
commitlint: | |
name: Check PR title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14.x' | |
cache: 'npm' | |
cache-dependency-path: | | |
package-lock.json | |
- name: Install deps | |
run: npm ci --ignore-scripts | |
- name: Verify PR title is in the correct format | |
run: | | |
echo "${{ github.event.pull_request.title }}" | npx commitlint -V | |
needs-migration-docs-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo event name | |
run: echo "${{ github.event_name }}:${{ github.event.pull_request.title }}" | |
- name: Check PR name for breaking changes | |
if: github.event_name == 'pull_request' && ( contains(github.event.pull_request.title, '!') || contains(github.event.pull_request.title, 'BREAKING CHANGE') ) | |
uses: mshick/add-pr-comment@v2 | |
with: | |
message-id: upgrade-guide | |
message: | | |
:warning: Breaking change detected. This PR will cause a major version upgrade. Please make sure to: | |
- [ ] Create an upgrade guide in the documentation project. | |
If you believe an upgrade guide is unnecessary, go ahead and check this box anyway. |