A0-2814: port metrics from release-11 #446
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 | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- reopened | |
- ready_for_review | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
main: | |
name: Check PR title | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: GIT | Checkout | |
uses: actions/checkout@v3 | |
- name: VALIDATE | Check PR title | |
# yamllint disable-line rule:line-length | |
uses: Cardinal-Cryptography/github-actions/check-pr-title@v1 | |
with: | |
pr-title: ${{ github.event.pull_request.title }} |