Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add check checkboxes check #2

Merged
merged 3 commits into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<!-- ignore-task-list-start -->
**Description:**

Add description here. It should illustrate the main purpose of the PR, including an overview of the problem and the technical solution. It should not repeat the task description, but rather go in depth regarding implementation choices. If the PR is really simple, this can be avoided, and the section deleted.
Expand All @@ -14,6 +15,7 @@ Add description here. It should illustrate the main purpose of the PR, including

- Add here screenshots, or a loom, showcasing the changes

<!-- ignore-task-list-end -->
**Checklist (based on [PR guidelines](https://www.notion.so/kittl/Pull-request-review-guide-c820979d6b3a401a952bd15f6353fbc2)):**

- [ ] I have self-reviewed this PR, according to [these points](https://www.notion.so/kittl/Pull-request-review-guide-c820979d6b3a401a952bd15f6353fbc2?pvs=4#cce74429793a46aa9e448cbe8ed97221)
Expand Down
4 changes: 4 additions & 0 deletions workflow-templates/checkboxes.properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "Check Checkboxes Workflow",
"description": "A workflow to check that all checkboxes in the form are checked"
}
15 changes: 15 additions & 0 deletions workflow-templates/checkboxes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'PR Checkboxes Check'

# any event that might update the PR description
on:
pull_request:
types: [opened, edited]

# using https://github.com/kentaro-m/task-completed-checker-action
jobs:
checkboxes-check:
runs-on: ubuntu-latest
steps:
- uses: kentaro-m/task-completed-checker-action@v0.1.2
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"