https://github.com/nordcloud/checklist-completed
Check if a pull requests task list is complete
https://github.com/nordcloud/checklist-completed
Last synced: 5 months ago
JSON representation
Check if a pull requests task list is complete
- Host: GitHub
- URL: https://github.com/nordcloud/checklist-completed
- Owner: nordcloud
- Created: 2021-09-14T14:10:33.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-04T17:02:13.000Z (over 2 years ago)
- Last Synced: 2025-01-18T05:00:54.437Z (over 1 year ago)
- Language: JavaScript
- Size: 256 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Checklist-completed javascript action
This action checks if a pull requests task list is complete
## Example usage
```yaml
name: Action
on:
pull_request:
types: [opened, edited]
jobs:
checklist:
name: Verify checklist
runs-on: ubuntu-latest
steps:
- uses: nordcloud/checklist-completed@master
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
```
## Contributing
- Run `npm run build` after making a new changes to the runtime code
## Credits
- [task-list-completed](https://github.com/stilliard/github-task-list-completed)