TP-23435 | Verify Checklist GitHub Action (#5896)
* TP-23435 | Verify Checklist GitHub Action * TP-23435 | reword: Strike-through * TP-23435 | rename workflow * TP-23435 | move to checkmate * TP-23435 | update note
This commit is contained in:
committed by
GitHub Enterprise
parent
77cf26d8df
commit
f85184081a
20
.github/pull_request_template.md
vendored
20
.github/pull_request_template.md
vendored
@@ -1,4 +1,18 @@
|
||||
<!--- PR Title Format: 'TP-00001 | Applying MVVM Model' -->
|
||||
## Summary
|
||||
Please include a summary of the change, relevant motivation, and context here.
|
||||
|
||||
## Description of what I changed
|
||||
Please include a summary of the change, relevant motivation and context here.
|
||||
## PR Checklist - select all
|
||||
<!--Checkmate-->
|
||||
- [ ] JIRA Issue ID in PR Title <!-- format: 'TP-00001 | Applying MVVM Model' -->
|
||||
|
||||
## Sign-off Checklist - select all
|
||||
<!--Checkmate-->
|
||||
- [ ] Product Sign-off
|
||||
- [ ] Design Sign-off
|
||||
|
||||
## Testing Checklist - select only one
|
||||
<!--Checkmate select=1-->
|
||||
- [ ] Feature Testing - done with Backend
|
||||
- [ ] Feature Testing - done with Mock (requires manager approval)
|
||||
|
||||
#### Note: Checklist items are mandatory. Delete only if not relevant.
|
||||
|
||||
17
.github/workflows/validate_checklists.yml
vendored
Normal file
17
.github/workflows/validate_checklists.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Checklist CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ master, release-*, development ]
|
||||
types: [ edited, opened, reopened, synchronize ]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
validate-checklists:
|
||||
runs-on: [ default ]
|
||||
steps:
|
||||
- name: Validate Checklists
|
||||
uses: roryq/checkmate@master
|
||||
Reference in New Issue
Block a user