All Projects → kentaro-m → task-completed-checker-action

kentaro-m / task-completed-checker-action

Licence: MIT License
☑️ A GitHub action that checks if all tasks are completed in the pull requests.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to task-completed-checker-action

actions
Collection of repetitive GitHub Actions
Stars: ✭ 12 (-60%)
Mutual labels:  actions, pull-request
action-sync-node-meta
GitHub Action that syncs package.json with the repository metadata.
Stars: ✭ 25 (-16.67%)
Mutual labels:  utility, actions
nrwl-nx-action
A GitHub Action to wrap Nrwl Nx commands in your workflows.
Stars: ✭ 163 (+443.33%)
Mutual labels:  actions, pull-request
add-an-issue-reference-action
A GitHub Action for adding a related issue reference to a pull request.
Stars: ✭ 19 (-36.67%)
Mutual labels:  actions, my-portfolio
assign-one-project-github-action
Automatically add an issue or pull request to specific GitHub Project(s) when you create and/or label them.
Stars: ✭ 140 (+366.67%)
Mutual labels:  utility, actions
HashKode
Kotlin hashcode utilities
Stars: ✭ 15 (-50%)
Mutual labels:  utility
to-no-case
Remove an existing case from a string.
Stars: ✭ 15 (-50%)
Mutual labels:  utility
go-ethutil
Ethereum utility functions for Go.
Stars: ✭ 17 (-43.33%)
Mutual labels:  utility
ghaction-upx
GitHub Action for UPX, the Ultimate Packer for eXecutables
Stars: ✭ 27 (-10%)
Mutual labels:  actions
EnhanceDiskUtility
SIMBL plugin for Disk Utility that aims to enable Verify / Repair Permissions support
Stars: ✭ 17 (-43.33%)
Mutual labels:  utility
missing
A utility library for Clojure of functions and macros that complement clojure.core
Stars: ✭ 26 (-13.33%)
Mutual labels:  utility
goto
Goto - The Good Way to Program
Stars: ✭ 14 (-53.33%)
Mutual labels:  utility
couchbackup
CouchDB backup and restore command-line utility.
Stars: ✭ 15 (-50%)
Mutual labels:  utility
supply-chain-goat
Hands-on tutorials to learn about software supply chain security
Stars: ✭ 39 (+30%)
Mutual labels:  actions
peek
1-click from git repo to local editor
Stars: ✭ 22 (-26.67%)
Mutual labels:  pull-request
tip
GitHub Action to keep a 'tip' pre-release always up-to-date
Stars: ✭ 18 (-40%)
Mutual labels:  actions
po-util
Classic Edition of po-util: The Ultimate Local Particle Experience for Linux and macOS
Stars: ✭ 51 (+70%)
Mutual labels:  utility
vscode-jump
🏃‍♂️ Jump/Select to the Start/End of a word in VSCode
Stars: ✭ 67 (+123.33%)
Mutual labels:  utility
qodana-action
⚙️ Scan your Java, Kotlin, PHP, Python, JavaScript, TypeScript projects at GitHub with Qodana
Stars: ✭ 112 (+273.33%)
Mutual labels:  actions
setup-jfrog-cli
Set up JFrog CLI in your GitHub Actions workflow
Stars: ✭ 63 (+110%)
Mutual labels:  actions

Task Completed Checker Action

A GitHub action that checks if all tasks are completed in the pull requests.

▶️ Usage

Create a workflow

name: 'PR Tasks Completed Check'
on: 
  pull_request:
    types: [opened, edited]

jobs:
  task-check:
    runs-on: ubuntu-latest
    steps:
      - uses: kentaro-m/[email protected]
        with:
          repo-token: "${{ secrets.GITHUB_TOKEN }}"

Check whether tasks are completed

Add a pull request template to your repository (.github/pull_request_template.md).

For example:

## Issue Type
<!-- ignore-task-list-start -->
- [ ] Bug
- [ ] Document
- [ ] Enhancement
<!-- ignore-task-list-end -->

## Checklist
- [x] I have read the [CONTRIBUTING.md]()
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no lint errors
- [x] I have added tests that prove my fix is effective or that my feature works
- [x] New and existing unit tests pass locally with my changes

Create a pull request that contained tasks list to your repository and will be started automatically a workflow to check whether tasks are completed.

Every time edit a description of a pull request will be started automatically a new workflow to check.

Check whether tasks are completed

You can check a list of completed tasks and uncompleted tasks at the Actions page.

Check a list of completed/uncompleted tasks

Ignore checks whether tasks are completed

Please surround the task list with <!-- ignore-task-list-start --> and <!-- ignore-task-list-end --> for ignoring checks whether tasks are completed.

## Issue Type
<!-- ignore-task-list-start -->
- [ ] Bug
- [ ] Document
- [x] Enhancement
<!-- ignore-task-list-end -->

## Checklist
- [x] I have read the [CONTRIBUTING.md]()
- [x] I have made corresponding changes to the documentation
- [x] My changes generate no lint errors
- [x] I have added tests that prove my fix is effective or that my feature works
- [x] New and existing unit tests pass locally with my changes

📝 Licence

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].