Skip to content

Commit e59f784

Browse files
committed
Merge remote-tracking branch 'origin/master' into feat/option-set-selector-DHIS2-17872
2 parents 51576aa + df9b6fc commit e59f784

3 files changed

Lines changed: 27 additions & 2 deletions

File tree

.github/pull_request_template.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,16 @@ _reason_
2424

2525
### TODO
2626

27-
- [ ] _task_
27+
- [ ] Tests added
28+
- [ ] PRs for all affected apps created
29+
- [ ] Storybook added
30+
- [ ] _todo_
2831

2932
---
3033

3134
### Known issues
3235

33-
- [ ] _issue_
36+
- [ ] _issue_
3437

3538
---
3639

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: GitHub Task List Checker
2+
on:
3+
pull_request:
4+
types: [opened, edited, synchronize, reopened]
5+
6+
jobs:
7+
task-list-checker:
8+
if: ${{ github.actor != 'dependabot[bot]' }}
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Check for incomplete task list items
12+
uses: Shopify/task-list-checker@main
13+
with:
14+
github-token: ${{ secrets.GITHUB_TOKEN }}

.prettierrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,12 @@ const { config } = require('@dhis2/cli-style')
22

33
module.exports = {
44
...require(config.prettier),
5+
overrides: [
6+
{
7+
files: 'pull_request_template.md',
8+
options: {
9+
tabWidth: 2,
10+
},
11+
},
12+
],
513
}

0 commit comments

Comments
 (0)