Skip to content

Commit

Permalink
This new action will ensure a PRs check lists are all complete before…
Browse files Browse the repository at this point in the history
… marking it complete. (#440)

This is usefule to ensure the PR steps are done, as well as letting us add a todo list to a PR comment when reviewing, and ensuring it is done before merging
  • Loading branch information
alexbbt committed Jan 15, 2021
1 parent fea3178 commit bbf368d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/tasks-complete.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: 'PR Tasks Completed Check'

on:
pull_request:
types: [opened, edited]

jobs:
task-check:
name: Task Check
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/task-completed-checker-action@v0.1.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit bbf368d

Please sign in to comment.