Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 819 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 819 Bytes

Usage

Add an yaml like below as .github/workflows/checklist.yml or something to your repository:

name: Checklist

on:
  pull_request:
    types:
      - opened
      - reopened
      - edited
      - synchronize
      - ready_for_review

jobs:
  checkboxes-all-filled:
    name: Checkboxes All Filled
    runs-on: ubuntu-latest
    steps:
      - name: Uses checkboxes-all-filled
        uses: pione30/checkboxes-all-filled@v1

Development

When you change the codes under src directory, then npm run build to build and commit the outputs under dist directory.

When to release the new version, firstly create relese branch to verify (as recommended on the document).