2023-09-19 19:06:25 +00:00
|
|
|
name: Tasks Check
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request_review:
|
|
|
|
types:
|
|
|
|
- submitted
|
|
|
|
- approved
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
checkbox-check:
|
2023-09-22 20:35:49 +00:00
|
|
|
if: startsWith(github.event.pull_request.base.ref, 'dev-v') || startsWith(github.event.pull_request.base.ref, 'release-v')
|
2023-09-19 19:06:25 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check checkboxes
|
|
|
|
uses: mheap/require-checklist-action@v2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
requireChecklist: true
|