fix: fixed pro result queue (ASG-4867 #IN_PROGRESS) #43
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
| name: "Main PR: verify PR title" | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| PR-title-verify: | |
| name: PR title verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Verify | |
| uses: Slashgear/[email protected] | |
| with: | |
| regexp: '(feat|fix|docs|build|chore|ci|style|refactor|perf|test): .+ \(((ASG-\d+ (#IN_PROGRESS|#DONE))|NOJIRA)\)' | |
| helpMessage: 'Ex. "feat: my changes description (ASG-2 #DONE)" OR "feat: my changes description (NOJIRA)"' |