chore(deps-dev): bump the dev-dependencies group across 1 directory with 13 updates #734
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: Verify Package Version | |
on: | |
pull_request: | |
types: [opened, edited, reopened, synchronize, ready_for_review] | |
permissions: | |
contents: read | |
jobs: | |
verify: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
pull-requests: write # for actions-cool/verify-package-version to comment on PR | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.title, 'changelog') || contains(github.event.pull_request.title, 'release') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: verify-version | |
uses: actions-cool/verify-package-version@v1 | |
with: | |
title-include-content: docs | |
title-include-version: true | |
open-comment: true |