ci: add Verify Package Version action (#29345)

* ci: add Verify Package Version action

* Update .github/workflows/verify-package-version.yml
pull/29358/head
xrkffgg 4 years ago committed by GitHub
parent b68512f479
commit cd402dfe41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,18 @@
name: Verify Package Version
on:
pull_request:
types: [opened, edited, reopened, synchronize, ready_for_review]
jobs:
verify:
runs-on: ubuntu-latest
if: contains(github.event.pull_request.title, 'changelog') || contains(github.event.pull_request.title, 'release')
steps:
- uses: actions/checkout@v2
- name: verify-version
uses: actions-cool/verify-package-version@v1.1.1
with:
title-include-content: 'docs'
title-include-version: true
open-comment: true
Loading…
Cancel
Save